收藏
回答

企业微信 小程序 调用nfc读卡报错 ‘企业微信error action’, 怎么解决?

wx.qy.getNFCReaderState({
				
			  success: (res) => {
			    console.log(JSON.stringify(res), 'getNFCReaderState-success')
			    // todo what you want
				this.startNFCReader()
			  },
			  fail: (res) => {
				  console.log(JSON.stringify(res), 'getNFCReaderState-fail')
			    wx.showModal({
			      title: 'NFC-Not-Support',
			      content: JSON.stringify(res),
			    })
			  }
			})

startNFCReader() {
				wx.qy.startNFCReader({
				  success: (res) => {
					  console.log(JSON.stringify(res), 'startNFCReader-success')
				    wx.showModal({
				      title: 'NFC-Start',
				      content: JSON.stringify(res),
				    })
					// wx.onNFCReadMessage()
				  },
				  fail: (res) => {
				    console.log(JSON.stringify(res), 'fail')
				  }
				})
			},
onNFCReadMessage: function (e) {
		    console.log(JSON.stringify(e),'onNFCReadMessage')
		    if (1 == e.messageType) {
		      wx.showModal({
		        title: 'NFC-Id',
		        content: JSON.stringify(e),
		      })
		    } else if (2 == e.messageType) {
		      console.log('Auto-Stop')
		      wx.showModal({
		        title: 'NFC-Auto-Stop',
		        content: JSON.stringify(e),
		      })
		    }
		  },
回答关注问题邀请回答
收藏

2 个回答

  • 社区技术运营专员--许涛
    社区技术运营专员--许涛
    2022-11-10

    你好,企业微信相关问题请到企业微信社区咨询:https://developer.work.weixin.qq.com/community/question

    2022-11-10
    有用
    回复
  • 张小龙
    张小龙
    2022-11-10

    2022-11-10
    有用
    回复 1
    • 🐼
      🐼
      2022-12-13
      麻烦问下,这个问题找到解决方案了么?
      2022-12-13
      回复
登录 后发表内容