- 1.03.2006090 Windows 64 安装时重复报错,是什么情况?
[图片] 如图所示,安装过程中报错,点击忽略之后进度条会往前走一段,然后还是会报这个错误
2020-07-24 - wx.chooseImage 在华为V10上选择图片,大概率会少一张图片
- 当前 Bug 的表现(可附上截图) [图片] - 预期表现 这里我实际上选了N张照片,提示确实选择了N-1张, res.tempFilePaths返回的数据就是有bug的 - 复现路径 - 提供一个最简复现 Demo chooseImage() { const that = this wx.chooseImage({ sourceType: 2,//['拍照', '相册', '拍照或相册'] sizeType: 2,//['压缩', '原图', '压缩或原图'], count: that.data.maxcount,//max=9 success(res) { var tempFilePaths = res.tempFilePaths; console.log(tempFilePaths); that.setData({ imageList: that.data.imageList.concat(tempFilePaths) }); }, fail(res){ console.log(res); } }) }, 如上代码,在华为V10上测试会出现列表中少一张图片的bug,微信版本7.0.4,安卓版本9.0
2019-06-21