赞
踩
iBeacon是苹果公司2013年9月发布的移动设备用OS(iOS7)上配备的新功能。其工作方式是,配备有 低功耗蓝牙(BLE)通信功能的设备使用BLE技术向周围发送自己特有的ID,接收到该ID的应用软件会根据该ID采取一些行动。比如,在店铺里设置iBeacon通信模块的话,便可让iPhone和iPad上运行一资讯告知服务器,或者由服务器向顾客发送折扣券及进店积分。此外,还可以在家电发生故障或停止工作时使用iBeacon向应用软件发送资讯。
流程
先获取数据列表
拿到列表后调取蓝牙权限,搜索附近蓝牙进行筛选,找到相关数据渲染就完事
关键操作:调取蓝牙、获取uuid
- wx.openBluetoothAdapter({
- success: () => {
- //搜索iBeacon设备
- wx.startBeaconDiscovery({
- uuids: uuids, //多个uuid数组
- success: function (res) {
- wx.onBeaconUpdate(function () {
- //设置监听事件
- wx.getBeacons({
- //在监听事件中获取数据
- success: res => {
- console.log(res) //res.beacons 为搜索到的iBeacon数据数组
-
- //业务代码
-
- }
- })
- })
- },
- fail: (res) => {
- console.log('无匹配数据');
- console.log(res);
- }
- })
- },
- fail: () => {
- wx.showModal({
- title: '提醒',
- content: '请先打开您的手机蓝牙,打开后下拉刷新',
- })
- console.log(uuids);
- }
- })
进行uuid匹配后,进行渲染即可☆*: .。. o(≧▽≦)o .。.:*☆
Copyright © 2003-2013 www.wpsshop.cn 版权所有,并保留所有权利。