- 修改项目appiD失败?
啥都没改,就升级了一下开发工具,编译的时候提示wxss失败 [图片] 预览的时候提示 没有trim属性。 [图片]
2023-05-23 - onBluetoothDeviceFound-> ab2hex-> Uint8Array 长度无效?
// ArrayBuffer转16进度字符串示例 function ab2hex(buffer) { var hexArr = Array.prototype.map.call( new Uint8Array(buffer), function(bit) { return ('00' + bit.toString(16)).slice(-2) } ) return hexArr.join(''); } wx.onBluetoothDeviceFound(function(res) { var devices = res.devices; console.log('new device list has founded') console.dir(devices) console.log(ab2hex(devices[0].advertisData)) }) z这个函数有时候会报错,这事api给的实例,看log是初始化Uint8Array时,buffer的长度无效, 错误如下: Invalid array length argument;at onBluetoothDeviceFound callback function Uint8Array@[native code] ab2hex@https://usr/app-service.js:1076:609
2020-06-19 - 一个非常困惑的问题,小程序crash问题,怎么解决?
本人是做小程序插件的,我有个非常非常非常非常非常非常困惑的问题: 小程序不知道什么情况下会突然闪退,去哪里找问题!!!!!!!!!!!!!! 无论何种开发,总要有个log吧,不怕crash,就怕抓不到log,有log,一层层分析,总会解决,然而小程序crash就是没有crash的log。 官方总是说,你把log传给我们并提供xxxx,我们分析。。。。。。实在不懂,,,小程序这样算是个好的生态吗????? 小程序在产品上无疑是个非常棒的产品,在开发阶段,如此封闭,难道是怕泄露什么吗????????????
2020-01-15 - startBluetoothDevicesDiscovery 导致crash?
startBluetoothDevicesDiscovery这个API调用后,如果持续扫描,扫描时长不能超过15分钟,即使没两分钟扫描一次,然后stop再start也一样,总时长就10几分钟,在华为手机上直接导致微信crash,三星手机微信小程序crash,有办法解决吗?
2019-12-31