微信小程序真机调试getBluetoothDevices只可打印一次result
时间: 2024-02-23 13:01:09 浏览: 163
微信小程序实现蓝牙打印
对于微信小程序真机调试中的getBluetoothDevices方法,它是用于获取当前蓝牙适配器状态以及已搜索到的蓝牙设备列表的方法。在使用该方法时,如果希望多次打印结果,可以将该方法封装在一个函数中,在函数内部多次调用该方法并打印结果。例如:
```
function getBluetoothDevices() {
wx.getBluetoothDevices({
success: function (res) {
console.log(res.devices)
}
})
}
// 调用3次打印结果
getBluetoothDevices()
getBluetoothDevices()
getBluetoothDevices()
```
这样就可以在控制台中多次打印搜索到的蓝牙设备列表。注意在真机调试中,需要保证手机与电脑处于同一局域网内,并且需要将手机的调试模式打开才能进行调试。
阅读全文