需要用户授权
判断当前设备是否支持 NFC 能力
属性 | 类型 | 默认值 | 是否必填 | 说明 | 支持版本 | |
---|---|---|---|---|---|---|
success | function | 否 | 接口调用成功的回调函数 | |||
fail | function | 否 | 接口调用失败的回调函数 | |||
complete | function | 否 | 接口调用结束的回调函数(调用成功、失败都会执行) |
错误说明
错误码 | 错误信息 | 说明 |
---|---|---|
0 | ok | 正常 |
13000 | 当前设备不支持NFC |
wx.qy.getNFCReaderState({
success: (res) => {
console.log(JSON.stringify(res))
// todo what you want
},
fail: (res) => {
wx.showModal({
title: 'NFC-Not-Support',
content: JSON.stringify(res),
})
}
})