问题模块 框架类型 问题类型 API/组件名称 终端类型 微信版本 基础库版本
API和组件 微信小程序 Bug getBluetoothDevices 客户端 6.7.3 2.4.0
- 当前 Bug 的表现(可附上截图)
找不到附近的蓝牙设备
oppo r11s已经开启了蓝牙,定位,微信也获取了定位权限。仍然搜索不到蓝牙设备,该手机不用微信小程序是可以搜索到外部的蓝牙设备并且连接上的。
- 预期表现
可以搜索到附近的蓝牙
- 复现路径
- 提供一个最简复现 Demo
wx.openBluetoothAdapter({
success(res) {
console.log(res)
wx.startBluetoothDevicesDiscovery({
interval: '0',
success: function (res) {
console.log('找到设备', res)
wx.getBluetoothDevices({
success: function (res) {
console.log('getBluetoothDevices', res);
},
fail: function (res) {
console.log('getBluetoothDevices 失败', res)
}
})
},
fail: function (res) {
console.log('未找到设备', res)
}
})
}
})
微信小程序开发问题解答
微信小程序开发者回答:
搜索后,直接用蓝牙的mac地址连接试试
本文网址:http://www.91bianli.com/weixinxiaochengxu/35396.html