wx.startHCE

wx.startHCE({aid_list[, success][, fail][, complete]})

初始化 NFC 模块。

1.7.0 新版功能: 低版本需做 兼容处理

参数
  • aid_list (Array.) – 需要注册到系统的 AID 列表

  • success({errCode,errMsg}) (function()) –

    接口调用成功的回调函数, errCode:

    • 0 ok 正常

    • 13000 当前设备不支持NFC

    • 13001 当前设备支持NFC,但系统NFC开关未开启

    • 13002 当前设备支持NFC,但不支持HCE

    • 13003 AID列表参数格式错误

    • 13004 未设置微信为默认NFC支付应用

    • 13005 返回的指令不合法

    • 13006 注册AID失败

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

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

示例代码

wx.startHCE({
  aid_list: ['F222222222'],
  success(res) {
    console.log(res.errMsg)
  }
})