在使用uniapp开发相关功能的时候使用无效
uniapp中代码: <yz-reader
appID="x"
appKey="xxx"
appSecret="xxx="
ownIdentification="wechat-nickname"
bind:reading="handlerReading">
</yz-reader>
js 代码: handlerReading(data) {
const { success, error, status, percent, cardInfo } = data.detail
if (success) {
// 读卡状态和进度
console.log('-reading process-', status, percent)
if (status === 3) {
// 读卡成功
console.log('-reading success-', cardInfo)
}
} else {
// 读卡失败
console.log('-reading error-', error)
}
}
已开启NFC刷卡权限,且我在使用 const nfc = wx.getNFCAdapter()
this.nfc = nfc
nfc.startDiscovery({
success(res) {
console.log(res)
wx.showToast({
title: 'NFC读取功能已开启!',
icon: 'none'
})}
代码时可以正常打印log