uni app的蓝牙api有时候搜索不到蓝牙设备或者搜索到了但不在设备发现事件里回调
uni.openBluetoothAdapter({
success:function(){
uni.onBluetoothDeviceFound(function(){
console.log('new')
});
uni.startBluetoothDevicesDiscovery({
allowDuplicatesKey:true,
success(res) {
}
})
}
})
有时候出现onBluetoothDeviceFound一个设备都没有,但通过手机自带的蓝牙可以搜索到设备,下载蓝牙助手,搜索到设备后,uni app的api又恢复正常,回调里正常接收到设备
卡卡LL (作者)
谢谢,获取定位权限后正常
2020-07-29 17:09