wx.qy.stopNFCReader

wx.qy.stopNFCReader({[success][, fail][, complete]})
Label

关闭 NFC 模块,仅支持安卓系统

参数
  • success({errcode,errmsg}) (function()) –

    接口调用成功的回调函数

    • errcode (number) - 错误码

      • 0 正常

    • errmsg (string) - 错误信息

      • ok 正常

  • fail (function()) – 接口调用失败的回调函数

  • complete (function()) – 接口调用结束的回调函数(调用成功、失败都会执行)

前提

需要用户授权

示例
wx.qy.stopNFCReader({
  success: (res) => {
    wx.showModal({
      title: 'NFC-Stop',
      content: JSON.stringify(res),
    })
  },
  fail: (res) => {
    console.log(JSON.stringify(res))
  }
})