我正在使用Phonegap插件在离子扫描RFID标签,并试图创建一个IOS的建设。我正在使用nfc.scanNdef()函数,如这里所述https://github.com/chariotsolutions/phonegap-nfc的IOS。代码看起来像这样:
async ngOnInit(): Promise<void> {
try {
let tag = await this.nfc.scanNdef();
console.log(JSON.stringify(tag));
} catch (err) {
console.log('Error reading tag ngoninit', err);
}
}
问题是扫描会话在我的iPhone上启动,但它根本不扫描标签。有人能告诉我我做错了什么吗?
使用IOS版本15.5设备iPhone 7
1条答案
按热度按时间n3schb8v1#
请使用scanTag而不是scanNdef,然后重试。请参阅https://github.com/chariotsolutions/phonegap-nfc