小程序
小游戏
企业微信
微信支付
扫描小程序码分享
求各位大佬帮忙,代码在安卓上运行一切正常,但到了IOS里面,wx.notifyBLECharacteristicValueChange调用后既没有success也没有fail,下面是使用的两台苹果手机
然后我还发现另外一个问题,iPhone8手机端会疯狂的刷报错日志,非常频繁,麻烦遇到过这一类问题的帮忙解答一下,感激不尽
4 个回答
加粗
标红
插入代码
插入链接
插入图片
上传视频
我也遇到ios有时候无回调
你好,麻烦通过点击下方“反馈信息”按钮,提供出现问题的。
请具体描述问题出现的流程,并提供能复现问题的简单代码片段https://developers.weixin.qq.com/miniprogram/dev/devtools/minicode.html
用代码片段的话,可以帮助其他人快速的找到问题,与解决问题。
忘记带上代码了
registerNotify() { return new Promise((resolve, reject) => { wx.notifyBLECharacteristicValueChange({ state: true, deviceId: this.deviceId, serviceId: serviceId, characteristicId: readCharacteristic, success: (res) => { resolve(res); }, error: (err) => { reject(err); } }) }) }
wx.notifyBLECharacteristicValueChange({
serviceId,
state: true,
deviceId: this.deviceId,
characteristicId: readCharacteristic,
success: resolve,
error: reject
});
resolve(res);
关注后,可在微信内接收相应的重要提醒。
请使用微信扫描二维码关注 “微信开放社区” 公众号
我也遇到ios有时候无回调
请具体描述问题出现的流程,并提供能复现问题的简单代码片段https://developers.weixin.qq.com/miniprogram/dev/devtools/minicode.html
用代码片段的话,可以帮助其他人快速的找到问题,与解决问题。
忘记带上代码了
registerNotify() { return new Promise((resolve, reject) => { wx.notifyBLECharacteristicValueChange({ state: true, deviceId: this.deviceId, serviceId: serviceId, characteristicId: readCharacteristic, success: (res) => { resolve(res); }, error: (err) => { reject(err); } }) }) }
wx.notifyBLECharacteristicValueChange({
serviceId,
state: true,
deviceId: this.deviceId,
characteristicId: readCharacteristic,
success: resolve,
error: reject
});
resolve(res);
感激不尽