wx.onBluetoothDeviceFound((res) => {
console.log('获取蓝牙设备')
console.log(res)
//将我们的ibeacon设备找到并放进数组
for (var i = 0; i < res.devices.length; i++) {
var content = {
address: res.devices[i].name,
strength: res.devices[i].RSSI
};
that.data.resultList.unshift(content);
that.setData({
resultList: that.data.resultList
})
}
})
这是蓝牙检索代码,p20手机直接跳过,没有进入这个代码块
你好,麻烦具体描述问题流程,提供出现问题的微信版本号、系统版本号,以及能复现问题的代码片段https://developers.weixin.qq.com/miniprogram/dev/devtools/minicode.html