- 公众号无法授权,“平台发现该第三方代开发的小程序存在白 屏、报错等不可用情况...”,请问什么原因?
问题描述,见标题。 [图片]
2024-01-29 - 真机调试提示,房间已在调试中,不能再次加入?
[图片]不知道在真机调试的过程中触发了什么别的误操作,这边PC端的控制台还没关掉,真机这边关掉了,然后想再次调试就出现了这个问题.,重启再来还是不行,有没有什么解决的办法和经验?
2020-06-30 - wx.scanCode扫码一直在扫,没有任何回调
之前都是好的,扫码可以识别二维码里面的信息,返回值都是好的 今天测试重新测试的时候发现一直在扫码界面,一直没有返回值,就像是没对焦 一样,后来发现多台手机都不能扫码
2019-05-29 - 苹果手机调用scanQRCode没有回调?
wx.scanQRCode({ needResult: 1, // 默认为0,扫描结果由微信处理,1则直接返回扫描结果, scanType: ["qrCode"], // 可以指定扫二维码还是一维码,默认二者都有 success:function (res){ let result = res.resultStr; $.ajax({ url:result, type:'get', data:{id:me.validateForm.id}, success:function(res){ alert("请在pc端上传文件") } }) }, fail:function (res) { alert("失败"); alert(res) } });苹果在使用的时候没有回调,开启debug模式也没有任何的回调,请问是什么原因。 微信js版本1.2.0和 1.4.0,苹果所有的手机
2019-08-14 - wx.scanQRCode问题
https://developers.weixin.qq.com/doc/offiaccount/OA_Web_Apps/JS-SDK.html 苹果手机调用wx.scanQRCode没有触发回调 微信版本7.0.14 ios版本13.2.3 iphone8。同样的代码在安卓还有开发工具里是没问题的。
2020-07-08 - BLE下ISO使用writeBLECharacteristicValue失败
同样的代码,在安卓手机可以正常调用writeBLECharacteristicValue向蓝牙设备写入,但是在iphone手机(版本11.2.2)上调用,返回错误编码10008,错误信息“the value's length is invalid”,请大佬告知如何解决。代码如下: wx.notifyBLECharacteristicValueChange({ state: true, deviceId: deviceId, serviceId: notifyserviceId, characteristicId: notifycharacteristicId, success: function (res) { console.log("notify success") setTimeout(function () { that.writeBLECharacteristicValue(deviceId, writeserviceId, writecharacteristicId) }, 2000); }, fail: function (res) { console.log("notify fail:" + res.errMsg) }, complete : function() { wx.onBLECharacteristicValueChange(function (res) { console.log(res) }); } }) }, writeBLECharacteristicValue: function (deviceId, writeserviceId, writecharacteristicId) { var that = this let buffer = new ArrayBuffer(1) let dataView = new DataView(buffer) dataView.setUint8(0, 0) wx.writeBLECharacteristicValue({ deviceId: deviceId, serviceId: writeserviceId, characteristicId: writecharacteristicId, value: buffer, success: function (res) { console.log('write success') }, fail(res) { console.log('write fail') console.log(res) } }) },
2018-08-12 - 微信小程序 oppo k5手机无法搜索到蓝牙设备
苹果手机4G蓝牙连接得上,OPPO k5手机蓝牙连接不上
2019-11-19 - oppo R11s找不到蓝牙设备
- 当前 Bug 的表现(可附上截图) 找不到附近的蓝牙设备 [图片] oppo r11s已经开启了蓝牙,定位,微信也获取了定位权限。仍然搜索不到蓝牙设备,该手机不用小程序是可以搜索到外部的蓝牙设备并且连接上的。 - 预期表现 可以搜索到附近的蓝牙 - 复现路径 - 提供一个最简复现 Demo wx.openBluetoothAdapter({ success(res) { console.log(res) wx.startBluetoothDevicesDiscovery({ interval: '0', success: function (res) { console.log('找到设备', res) wx.getBluetoothDevices({ success: function (res) { console.log('getBluetoothDevices', res); }, fail: function (res) { console.log('getBluetoothDevices 失败', res) } }) }, fail: function (res) { console.log('未找到设备', res) } }) } })
2018-11-14 - oppo R11 Plus 小程序蓝牙搜索不到设备
- 当前 Bug 的表现(可附上截图) 打开蓝牙后,一直搜索不到蓝牙设备,但是在手机系统的蓝牙列表是可以看到蓝牙设备的
2018-11-15