//开启扫描beacon功能
setTimeout(function () {
wx.startSearchBeacons({
ticket: “”,
complete: function (res) {
if (res.errMsg.indexOf(‘bluetooth power off’) > -1) { alert(“请打开蓝牙”); }
else {
//监控扫描beacon
wx.onSearchBeacons({ complete: function (argv) { alert(JSON.stringify(argv)); } });
}
//继续扫描
$extend.startSearchBeacons();
}
});
}, 2000);
你好,麻烦具体描述问题,提供出现问题的具体机型、微信版本号、系统版本号,以及能复现问题的代码片段(https://developers.weixin.qq.com/miniprogram/dev/devtools/minicode.html)