收藏
回答

NFC接口 如何联接卡片?

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


最后一次编辑于  2020-10-13
回答关注问题邀请回答
收藏

3 个回答

登录 后发表内容
问题标签