- https的外链图片在Android手机在完美显示,但是在苹果手机中不显示
https的外链图片在Android手机在完美显示,但是在苹果手机中不显示,加载错误信息为: getLocalImgData:fail get file data fail
2018-09-25 - cover-view里的button未正确渲染
在上述机型(华为nova)使用cover-view,cover-view里的button不被渲染,无法点击,基础库版本`2.0.9` 见代码片段https://developers.weixin.qq.com/s/O7Gqnymo7e4V
2018-12-10 - downloadTask.onProgressUpdate在安卓系统不工作
安卓真机下,downloadTask.onProgressUpdate并不能显示进度条。但是在iphone真机下是可以的。 代码附上: const downloadTask = wx.downloadFile({ url: url, success: function (res) { wx.showToast({ title: '下载完成', icon: 'success', duration: 1000 }); _this.setData({ displayProgressBar: false, downloadPercent: 0 }); var filepathtemp = res.tempFilePath; if (app.debug.dev) { console.log('res :', res); console.log('download temp filepath:', filepathtemp); } //自动打开文件 setTimeout(function () { wx.openDocument({ filePath: filepathtemp, success: function (res) { if (app.debug.info) { console.log('success:', "打开文档成功"); } }, fail: function (res) { if (app.debug.info) { console.log('fail:', res); } }, complete: function (res) { if (app.debug.info) { console.log('complete:', res); } } }) }, 1000) //延迟时间 // //对临时资源进行永久保存 // wx.saveFile({ // tempFilePath: filepathtemp, //tempFilePath想要保存的文件的临时地址 // success: function (res) { // console.log("保存成功啦") // console.log(res) //res是保存成功的返回值,包含存储路径等 // var savedPath = res.savedFilePath; // } // }) }, fail: function () { if (app.debug.info) { console.log('下载失败', e); } wx.showToast({ title: '下载失败', icon: 'loading', duration: 1000 }); _this.setData({ displayProgressBar: false, downloadPercent: 0 }); }, complete: function () { console.log('complete'); _this.setData({ displayProgressBar: false, downloadPercent: 0 }); }, }); // when the progress is updated // monitoring the download progress downloadTask.onProgressUpdate((res) => { console.log('下载进度', res) console.log('下载进度', res.progress) console.log('已经下载的数据长度', res.totalBytesWritten) console.log('预期需要下载的数据总长度', res.totalBytesExpectedToWrite) this.setData({ downloadPercent: ((res.totalBytesWritten / totalbytes) * 100).toFixed(2) //toFixed(2)取小数点后两位,更新wxml中progress组件的进度值 }) }); 在安卓真机下,downloadTask.onProgressUpdate好像并没有被触动。 测试机型:小米5、坚果pro2、华为8 微信:6.5.22
2017-11-29 - onProgressUpdate不执行问题
通过 [代码]downloadTask[代码],监听下载进度变化事件。 本地开发者工具,真机测试都是正常的。 上传到微信平台,体验版跟线上版 。手机测试 都不执行 downloadTask.onProgressUpdate 方法。 但是开发者工具里可以正常运行。请问这个一般是哪里的问题了?
2018-06-15