手机 IOS 11.2.6 iphone X 微信版本6.6.5
使用几个iBeacon 设备都搜索不到,代码检查 下也是应该没有问题的,系统蓝牙有打开 定位也打开。设备在APP 能搜索到相应信息,但是在小程序就不可以,下面是iBeacon在APP 信息 ,麻烦哪里高手能帮我解答下。
wx.startBeaconDiscovery({
//怕由于大小写原因引起,所以大写与小写都测试了
uuids: ['21173738-DD02-4A04-288E-1C87F9C6685B'.toLowerCase(), 'B9AF6690-658A-88EC-3EBB-BDDDC02264A6'.toLowerCase(), 'EF8CF6C2-34F7-E17F-B5E8-2726D8B71DD'.toLowerCase()],
success(res) {
setInterval(function(){
wx.getBeacons({
fail: function (res) {
console.log('fail');
console.log(res);
},
success: function (res) {
console.log('sucess');
console.log(res);
}
});
},2000);
wx.onBeaconUpdate((res) => {
console.log('onBeaconUpdate');
console.log(res);
});
wx.onBeaconServiceChange(function (available, discovering) {
console.log('onBeaconServiceChange');
console.log([available, discovering]);
}
);
console.log(res);
},
fail: function (res)
{
console.log(res);
}
})
我是做iOS开发的,也碰到类似现象。明明有ibeacon,但是有时候就是扫描不到。请问你这小程序最后这个问题解决了吗?
管理员呢,在线求救