- 标题栏问题
IOS 系统 通过 navigateTo 进行页面跳转 后 新的页面标题栏左上角只有一个后退按钮,点击后直接就退出小程序回答微信界面,我看我手机里面其他的小程序界面,进入新的页面后,左上角有两个按钮,一个返回,一个关闭,返回的化直接返回上一层,关闭的化直接回到小程序发现界面,这个是如何做到的
2017-08-22 - 蓝牙MAC地址
[代码]wx.onBluetoothDeviceFound[代码][代码]tip[代码]: 开发者工具和 Android 上获取到的[代码]deviceId[代码]为设备 MAC 地址,iOS 上则为设备 uuid。因此[代码]deviceId[代码]不能硬编码到代码 请问 IOS上如何读取蓝牙MAC地址
2017-08-22 - 蓝牙打开问题
如果手机本身设置中蓝牙未打开 通过小程序api 调用 openBluetoothAdapter进行初始化 会报错 有api 直接弹出手机蓝牙打开的设置界面么,而不需要用户自己再去找蓝牙打开的设置页面?
2017-08-21 - 蓝牙读数据
readBLECharacteristicValue: function (deviceId, serviceId, characteristicId, callback) { wx.onBLECharacteristicValueChange(function (characteristic) { console.log('characteristic value comed:'); let buffer = characteristic.value; let dataView = new DataView(buffer); console.log("接收字节长度:" + dataView.byteLength); console.log(dataView.getUint8(0)); console.log(dataView.getUint8(1)); callback(dataView); }); wx.readBLECharacteristicValue({ // 这里的 deviceId 需要在上面的 getBluetoothDevices 或 onBluetoothDeviceFound 接口中获取 deviceId: deviceId, // 这里的 serviceId 需要在上面的 getBLEDeviceServices 接口中获取 serviceId: serviceId, // 这里的 characteristicId 需要在上面的 getBLEDeviceCharacteristics 接口中获取 characteristicId: characteristicId, success: function (res) { console.log('readBLECharacteristicValue:', res) } }) } 设备一直在广播数据 ,这里的readBLECharacteristicValue 要轮询么 譬如1s钟调用一次 ,还是不需要轮询,调用一次后,只要有数据就会进wx.onBLECharacteristicValueChange wx.onBLECharacteristicValueChange 这个函数的回调函数参数characteristic.value 该如何显示
2017-08-17 - swiper组件 indicator-color赋值
indicator-color 赋值类型Color 默认rgba(0, 0, 0, .3) 如果我要修改这个值 怎么赋值 直接写 第一种: indicator-color=“rgba(125, 125, 125, .3)” 编译调试 rgba 没定义 第二种: indicator-color="#1afa29" 编译调试无效果 第三种: indicator-color=0x1afa29 编译调试无效果 Color 类型如何定义
2017-01-17 - 开发工具卡死
win7 64 位 开发工具 有时在中英文切换后 发现 文本无法编辑 现象 键盘输入无效 只能重启开发工具
2017-01-13