- 当前 Bug 的表现(可附上截图)
图片批量上传小程序闪退
因图片需要上传到服务器,样例会有点问题,上传部分需要修改
wx.chooseImage({
count: this.data.picturesCount,
sizeType: ['original', 'compressed'], // 可以指定是原图还是压缩图,默认二者都有
sourceType: ['album', 'camera'], // 可以指定来源是相册还是相机,默认二者都有
success: (data) => {
const tempFilePaths = data.tempFilePaths;
// console.log(tempFilePaths)
tempFilePaths.forEach((el, index) => {
wx.uploadFile({
url: config.upload_img,
filePath: el,
name: 'file',
formData: {
'type': 'review'
},
success: (res) => {
},
fail: (res) => {
console.log("fail", res);
},
})
})
}
})
- 预期表现
开发者工具也可以滚动
- 复现路径
- 提供一个最简复现 Dem