- 当前 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