getBluetoothDevices在鸿蒙5.0next版本中advertisData长度不对?
wx.getBluetoothDevices({
success: function (res) {
for (let i = 0; i < res.devices.length; i++) { // 遍历设备信息
let tempDevice = res.devices[i];
tempDevice.advUint8Array = new Uint8Array(tempDevice.advertisData); // advertisData少了一个字节
}
},
fail: function (res) {
console.error
},
complete: function (res) {}
});
当前蓝牙设备的广播数据段中的 ManufacturerData 数据段,少了一个字节。