uni.writeBLECharacteristicValue({
deviceId: this.BLEInformation.deviceId,
serviceId: this.BLEInformation.writeServiceId,
characteristicId: this.BLEInformation.writeCharaterId,
value: buf, //ArrayBuffer类型
success: function (res) {
},
fail: function (e) {
console.log("失败原因", e);
},
complete: function () {
},
});
同一份代码在微信小程序中蓝牙可以打印出来,打包成安卓app基座运行后打印方法返回成功,但是蓝牙打印机没有打印,如果使用Native.js的蓝牙打印是可以打印出来,请问这是什么原因?
0 个回复