- wx.makeBluetoothPair 调用后返回 status:-1?
小程序搜索到BLE设备,并获取了特征值连接后,不能够按照预期使用 wx.makeBluetoothPair 代码片段摘取: 1、查找到BLE设备,并通过 wx.onBluetoothDeviceFound 查找到指定设备 2、根据搜索到的设备信息,取得deviceId [图片] 返回结果 :fail {status: -1 }
2020-12-23 - writeBleCharacteristic iphone6p 与ble 设备链接,返回信息错误?
发送buffer信息成功,蓝牙设备能正确接收信息,但是writeBleCharacteristic api 一直返回错误: [图片] 后测试固定数据写入,使用iphone6p手机依然写入失败 let buffer= new ArrayBuffer(4) let dataView = new DataView(buffer) dataView.setUint8(0, 0x1b) dataView.setUint8(1, 0x84) dataView.setUint8(2, 0x00) dataView.setUint8(3, 0x84) wx.writeBLECharacteristicValue({ deviceId: this._deviceId, serviceId: this._serviceId, characteristicId: this._characteristicId, value: buffer, success: (res) => { this.setPrcess(` uuid:${this._characteristicId}写入二进制数据成功: ${res.errMsg}`) console.log('writeBLECharacteristicValue success', res.errMsg) }, fail: (res) => { this.setPrcess(` uuid:${this._characteristicId}写入二进制数据失败`) this.setData({ writeErrorMsg: `写入失败:${e.errMsg}` }) }
2020-04-27 - 小程序web-view组件加载页面
web-view 页面首次加载 a.html正常 再次进入web-view 页面加载 a.html?m=1&n=2 AppData中查看 web-view配置的 url 已经改变,但是页面没有变化 <web-view src="{{url}}" bindmessage="bindEventHandler"></web-view>
2018-07-12 - web-view 业务域名校验
web-view 业务域名校验 目前web-view如果配置测试环境html地址,开发工具设定不校验合法域名、web-view(业务域名)、TLS 版本以及 HTTPS 证书,则开发工具可以访问 web-view页面。 但是 使用手机运行远程调试时,打开web-view页面。提示:“无法打开有利网: 不支持打开非业务域名,请重新配置。” 这样没法进行测试?感觉业务被斩断。
2018-07-10 - input 组件问题
小程序input 组件中 type 类型:如果选了 number 则 android中 通过wxs处理后返回的 ➕空格处理,会被去掉空格, 此问题在ios没有出现。请尽快调整,谢谢。 type 有效值: 值说明text文本输入键盘number数字输入键盘
2018-05-31 - Object.values is not a function
目前使用上,Object.values( ) 我这边使用只有 IOS 10.2.1(14D27) 版本机型在预览及体验版本不可用。 提下建议,这种时而可用,时而不可用的接口能不能统一处理下,要不然,总是当bug被提出来,还不大好定位啊。 arrData={ hClientNonce: "430ab31cae0a12844", hClientVersion:"1.1.0", hExpireTime:10000, hTimestamp:1521967940731 } console.log(arrData) let arr1 = Object.keys(arrData).sort() console.log(arr1) let arr = Object.values(arrData).sort() console.log(arr)
2018-05-22