体验版必须打开调试模式,除非你配置了https协议
为什么我真机调试不校验域名没开,苹果xr能用,但是体验版就不行了,体验版开调试才能用,其他手机都行?为什么我真机调试不校验域名没开,苹果xr能用,但是体验版就不行了,体验版开调试才能用,其他手机都行?
2020-06-08楼主,这个问题解决了吗?
writeBLECharacteristicValue调用ArrayBufferlet buffer = new ArrayBuffer(16) let dataView = new DataView(buffer) dataView.setUint8(0, 0x06) dataView.setUint8(0, 0x01) dataView.setUint8(0, 0x01) dataView.setUint8(0, 0x01) dataView.setUint8(0, 0x00) dataView.setUint8(0, 0x00) dataView.setUint8(0, 0x00) dataView.setUint8(0, 0x00) dataView.setUint8(0, 0x00) dataView.setUint8(0, 0x00) dataView.setUint8(0, 0x00) dataView.setUint8(0, 0x00) dataView.setUint8(0, 0x00) dataView.setUint8(0, 0x00) dataView.setUint8(0, 0x00) dataView.setUint8(0, 0x00) console.log(buffer) 这里console真机没有任何数据,开发者工具里面有相关数据 请问大神怎么解决
2018-06-22你这样写多的吗?
writeBLECharacteristicValue 写入问题[代码]//向低功耗蓝牙设备特征值中写入二进制数据[代码][代码] [代码][代码]writeBLECharacteristicValue: [代码][代码]function[代码] [代码](e) {[代码][代码] [代码][代码]var[代码] [代码]that = [代码][代码]this[代码][代码];[代码][代码] [代码] [代码] [代码][代码]wx.onBLECharacteristicValueChange([代码][代码]function[代码] [代码](characteristic) {[代码][代码] [代码][代码]that.setData({[代码][代码] [代码][代码]msg_3: JSON.stringify(characteristic)[代码][代码] [代码][代码]})[代码][代码] [代码][代码]})[代码][代码] [代码] [代码] [代码][代码]// 向蓝牙设备发送一个0x00的16进制数据[代码][代码] [代码][代码]let buffer = [代码][代码]new[代码] [代码]ArrayBuffer(4)[代码][代码] [代码][代码]let dataView = [代码][代码]new[代码] [代码]DataView(buffer)[代码][代码] [代码] [代码] [代码][代码]dataView.setUint8(0, 0x0D)[代码][代码] [代码][代码]dataView.setUint8(1, 0x02)[代码][代码] [代码][代码]dataView.setUint8(2, 0x11)[代码][代码] [代码][代码]dataView.setUint8(3, 0x13)[代码][代码] [代码] [代码] [代码][代码]wx.writeBLECharacteristicValue({[代码][代码] [代码][代码]deviceId: that.data.deviceId,[代码][代码] [代码][代码]serviceId: that.data.uuid,[代码][代码] [代码][代码]characteristicId: that.data.characteristicId,[代码][代码] [代码][代码]value: buffer,[代码][代码] [代码][代码]success: [代码][代码]function[代码] [代码](res) {[代码][代码] [代码][代码]that.setData({[代码][代码] [代码][代码]msg_2: JSON.stringify(res)[代码][代码] [代码][代码]})[代码][代码] [代码][代码]}[代码][代码] [代码][代码]})[代码][代码] [代码][代码]},[代码] 请问 value: buffer, 这样写对吗? 显示是成功写入的,但 onBLECharacteristicValueChange 没有回调信息
2018-06-22