安卓多张图片上传,只显示一张
安卓真机测试多张图片同时上传,只显示一张;如果再次多张同时上传则会弹出小程序。开发工具和IOS可以同时上传多张,下面是代码:
var me=this;
wx.chooseImage({
count: 9,
sizeType: [‘compressed’],
sourceType: [‘album’, ‘camera’],
success: function (res) {
var tempFilePaths = res.tempFilePaths;
for (var i = 0; i < tempFilePaths.length; i++) {
request.uploadFile({
url: ‘qiniu://’,
filePath: tempFilePaths[i],
name: ‘file’,
formData: {
‘token’: me.data.token
},
success: function (res) {
array.unshift(JSON.parse(res.data).url);
me.setData({
img: array,
imgBool: “false”
})
},
}
});
有解决方案,请发邮件qizhixi333@163.com。谢谢~!
