- 为啥我的版本已过审核的和刚提交审核的样式基本没变化,修复bug而已,后面多次审核不过?
你的小程序"智能蓝牙BLE",提审时间2019-10-11 09:33:48,代码发布审核未通过,原因如下: 1:小程序内容不符合规则: (1):小程序提供内容涉及商业服务推广,属个人未开放类目,建议选择企业主体小程序。 请根据上述原因对小程序进行修改,并重新提交代码审核。 若对上述原因无法理解,可前往反馈页面进行反馈。 客户急着用。。。推广。。设备说明书不就是要说清楚点?
2019-10-11 - 小程序蓝牙读取大量数据会丢包
- 当前 Bug 的表现(可附上截图) - 预期表现 - 复现路径 - 提供一个最简复现 Demo notifyBLECharacteristicValueChange: function (){ var that = this; wx.notifyBLECharacteristicValueChange({ state: true, // 启用 notify 功能 deviceId: that.data.deviceId, serviceId: that.data.serviceId, characteristicId: that.data.notifyCharacteristicId, success: function (res) { console.log("notify启动成功"); setTimeout(function (){ // ble.monitor_ble(that.data.deviceId,that.data.serviceId,that.data.writeCharacteristicId); ble.refresh_ble(that.data.connected,that.data.deviceId, that.data.serviceId, that.data.writeCharacteristicId); }//这个是我做的一个发送刷新命令的函数 ,2000 ); setTimeout(function () { wx.hideToast(); }, 2000); }, fail: function (res) { wx.showToast({ title: 'notify启动失败', mask: true }); } }) }, /***我把那条函数封装成模块了*/ function ble_write_fun(orderStr, deviceId, serviceId, writeId) { console.log("orderStr:", orderStr); let order = utils.stringToBytes(orderStr);//字符串转byte let byteLength = order.byteLength; console.log("byteLength:", byteLength); wx.writeBLECharacteristicValue({ deviceId: deviceId, serviceId: serviceId, characteristicId: writeId, // 这里的value是ArrayBuffer类型(二进制数组) value: order.slice(0, 20),//从0-20个字节的数据 success: function (res) { // console.log("value:", utils.ab2str(order)); onBLECharacteristicValueChange(deviceId, serviceId, writeId); }, fail: function (res) { console.log("res:", res); } }) } function onBLECharacteristicValueChange(deviceId, serviceId, writeId) { wx.onBLECharacteristicValueChange(function (res) { console.log("res.value:", utils.ab2str(res.value)); var resValueStr = utils.ab2str(res.value);//2进制数组转成字符串 console.log("读到字符串", resValueStr); rev_page_parse(resValueStr,deviceId, serviceId, writeId); }); } function refreshPara(connected, deviceId, serviceId, writeId) { if (connected) { ble_write_fun(get_cmd, deviceId, serviceId, writeId);//写入发送 } else { app.showModal1("蓝牙已断开"); } } 问题是这样。我发送一个刷新命令后开始监听读取数据。数据很小到问题不明显,设备发了528个字节。。然后在APP看到是完整收到,换成小程序后收到的是断断续续不确定。然后设备分包成20个字节发送出来,结论也一样,设备延时发送也一样,,问题是啥情况。。设备发送的数据[图片][图片] [图片]
2019-04-17