adapter.onDiscovered(function(res){
console.log('发现设备', res);
const { techs, messages } = res;
if(techs.includes(adapter.tech.nfcA)){
console.log('发现NFC-A卡');
const nfcA = adapter.getNfcA();
app.nfcA = nfcA;
nfcA.connect({
success: function(res){
console.log('设备已连接', res);
console.log('发送测试数据', res);
nfcA.transceive({
data:new Uint8Array(),
success: function(res){
console.log('发送数据成功, 接收数据如下:', res);
},
fail: function(err){
console.log('发送数据失败', err);
}
})
},
fail: function(err){
console.log('设备联接错误', err);
}
});
}
});
报错信息:
{errMsg: "connect:fail:NFC tag has not been discovered", errCode: 13013}
ACTION_NDEF_DISCOVERED、ACTION_TECH_DISCOVERED
官方是否 还未支持
ACTION_TAG_DISCOVERED
你好,麻烦在手机微信那里上传下日志: 我->设置->帮助与反馈右上角有个上报日志的入口,麻烦提供一下微信号,时间点,并提供能复现问题的简单代码片段(https://developers.weixin.qq.com/miniprogram/dev/devtools/minicode.html)。
时间: 2020-10-14 13:00
代码片段 https://developers.weixin.qq.com/s/wHCz35mb7klq
您好,请问您的问题解决了吗?解决了的话可以分享一下代码吗?
您好,请问一下,这一块问题解决了吗