- NFC功能中NFCAdapter.offDiscovered()无法取消监听?
NFCAdapter.offDiscovered(),调用不生效,导致NFCAdapter.onDiscovered(),重复监听,重复读卡。 https://developers.weixin.qq.com/s/TLbikymM7On9 机型:小米6 MIUI版本:10.4.2稳定版 安卓版本:9 微信客户端版本:7.0.21 [图片][图片][图片][图片]
2021-01-22 - 2020-08-04 更新后 API NFC 读写接口 onDiscovered 依然没有id属性?
https://developers.weixin.qq.com/miniprogram/dev/framework/release/ https://developers.weixin.qq.com/miniprogram/dev/api/device/nfc/NFCAdapter.onDiscovered.html 我用开发工具连接手机,真机调试。发现 res没有 messages 属性,res 的值是这个techs: (2) ["NFC-A", "MIFARE Classic"] 手机小米6,MIUI 10.4.2,安卓9 代码如下: const app = getApp() Page({ data: { nfc: null }, onLoad: function () { var that = this; that.setData({ nfc: wx.getNFCAdapter() }) that.data.nfc.startDiscovery({ fail(err) { console.log(err) } }) that.data.nfc.onDiscovered((res) => { console.log(res) }) }, onHide() { if (this.data.nfc) { this.data.nfc.stopDiscovery() } } })
2020-08-14 - 2020-08-04 更新后 API NFC 读写接口 onDiscovered 依然没有id属性
https://developers.weixin.qq.com/miniprogram/dev/framework/release/ https://developers.weixin.qq.com/miniprogram/dev/api/device/nfc/NFCAdapter.onDiscovered.html 我用开发工具连接手机,真机调试。发现 res没有 messages 属性,res 的值是这个techs: (2) ["NFC-A", "MIFARE Classic"] 手机小米6,MIUI 10.4.2,安卓9
2020-08-14