获得过 0 次赞
回答过的问题获得 0 次赞
分享过的文章/案例获得 0 次赞
评论与回复获得 0 次赞
你好, 请问这个问题解决了吗
iOS17.4.1 小程序搜索不到蓝牙设备,低于iOS17 和其他android设备搜索可以搜索到?代码如下: wx.openBluetoothAdapter({ mode: 'central', success(res) { wx.startBluetoothDevicesDiscovery({ allowDuplicatesKey: false, success(res) { wx.onBluetoothDeviceFound(function (res) { const { devices } = res || {} devices.forEach((device) => { console.log('找到了device.name:', device.name) } }) } }) }, } }) iOS17.4.1小程序搜索不到蓝牙设备,但是系统设置里面可以搜到,测试的其他 android 手机和 iOS 16+ 的手机可以搜索到,请问是什么原因?
06-15