问题模块 框架类型 问题类型 API/组件名称 终端类型 微信版本 基础库版本
API和组件 微信小程序 Bug wx.onBluetoothDeviceFound 客户端 6.65 2.2.2
监听到的新蓝牙设备的数据没有localname与name,或者返回name是空的,导致配对name的时候配对不上。还有一些手机根本搜不到蓝牙设备
代码片段
wx.onBluetoothDeviceFound(function (res) { console.log('发现蓝牙设备:' , res) if (res.devices[0]) { var name = res.devices[0].localName; if (name != '' ) { startConnectDevices(); } } })
微信小程序开发问题解答
微信小程序开发者回答:
麻烦给个相关的代码片段(https://developers.weixin.qq.com/miniprogram/dev/devtools/minicode.html)
本文网址:http://www.91bianli.com/kaifazhinan/75603.html