- 当前 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
微信小程序开发问题解答
微信小程序开发者回答:
是安卓的还是ios的?尝试清理下缓存以及内存再试下?
本文网址:http://www.91bianli.com/weixinxiaochengxu/23300.html