小程序
小游戏
企业微信
微信支付
扫描小程序码分享
iOS设备搜不到,Android设备就可以搜到
1 个回答
加粗
标红
插入代码
插入链接
插入图片
上传视频
贴图没有表示出来标题的意思,建议贴出来执行结果。或者描述一下这段代码执行后出现了什么现象
你好,麻烦通过点击下方“反馈信息”按钮,提供出现问题的。
/**
* 初始化蓝牙
*/
initBluetooth() {
var that = this;
// 调用微信小程序API,打开蓝牙适配器接口
wx.openBluetoothAdapter({
success: function (res) {
wx.showToast({
title: '蓝牙初始化成功',
icon: 'success',
duration: 800
})
setTimeout(function () {
that.findBluetooth();
}, 2000)
}
,
//如果手机上的蓝牙没有打开,可以提醒用户
fail: function (res) {
title: '请开启蓝牙',
icon: 'fails',
duration: 1000
},
* 开始搜索蓝牙设备
findBluetooth() {
wx.startBluetoothDevicesDiscovery({
allowDuplicatesKey: false,
interval: 0,
wx.showLoading({
title: '正在搜索蓝牙设备',
that.getBluetooth()
关注后,可在微信内接收相应的重要提醒。
请使用微信扫描二维码关注 “微信开放社区” 公众号
贴图没有表示出来标题的意思,建议贴出来执行结果。或者描述一下这段代码执行后出现了什么现象
/**
* 初始化蓝牙
*/
initBluetooth() {
var that = this;
// 调用微信小程序API,打开蓝牙适配器接口
wx.openBluetoothAdapter({
success: function (res) {
wx.showToast({
title: '蓝牙初始化成功',
icon: 'success',
duration: 800
})
setTimeout(function () {
that.findBluetooth();
}, 2000)
}
,
//如果手机上的蓝牙没有打开,可以提醒用户
fail: function (res) {
wx.showToast({
title: '请开启蓝牙',
icon: 'fails',
duration: 1000
})
}
})
},
/**
* 开始搜索蓝牙设备
*/
findBluetooth() {
var that = this;
wx.startBluetoothDevicesDiscovery({
allowDuplicatesKey: false,
interval: 0,
success: function (res) {
wx.showLoading({
title: '正在搜索蓝牙设备',
})
that.getBluetooth()