欢迎您访问程序员文章站本站旨在为大家提供分享程序员计算机编程知识!
您现在的位置是: 首页  >  移动技术

微信多图上传解决android多图上传失败问题

程序员文章站 2023-10-26 20:53:40
微信提供了文件上传的方法wx.uploadfile来上传我们的图片 wx.chooseimage({ success: function(res) { v...

微信提供了文件上传的方法wx.uploadfile来上传我们的图片

wx.chooseimage({
 success: function(res) {
 var tempfilepaths = res.tempfilepaths
 wx.uploadfile({
  url: 'http://example.weixin.qq.com/upload', //仅为示例,非真实的接口地址
  filepath: tempfilepaths[0],
  name: 'file',
  formdata:{
  'user': 'test'
  },
  success: function(res){
  var data = res.data
  //do something
  }
 })
 }
})

但是针对多图上传微信没有给出相应的方法来解决,如此我们只能消耗我们程序猿的脑细胞来解决了,最开始我使用了for循环来循环上传我的图片,恰好本人是苹果手机所以上传是没有问题的,本以为轻松解决了这个问题但是提交到测试以后坑了。测试mm说他那里提示上传失败。

于是借来测试手机打印出来错误消息

uploadfile:fail:the same task is working

wx.uploadfile不能并行,因为wx.uploadfile是一个异步函数,所以循环的时候在安卓手机上会出现并行

所以上面的通过循环wx.uploadfile方法进行多图上传肯定是不能行的了,既然不能并行我们是不是可以让wx.uploadfile执行完后再执行wx.uploadfile了。看下修改后的代码

这里为上传图片的方法,在里面作出判断上传完成以后重复调用upload_img

var img_index = 0;//上传带第几张
var image_list1 = new array();
//上传图片
var upload_img = function (that, file_name) {
 that.setdata({
  hidden: false
 });
 wx.uploadfile({
  url: '',
  filepath: file_name,
  name: 'file',
  success: function (res) {
   //此处判断是否上传成功
   var obj = json.parse(res.data);
   if (obj.ret_code == 1) {
    //上传成功以后将上传成功的图片加入数组显示出来,这样可以避免没有上传成功的图片就不显示
    var uploads = new array();
    var image_list = new array();
    //加入返回值
    uploads = that.data.upload;
    uploads.push(obj.data);
    //加入图片
    image_list = that.data.tempfilepaths;
    image_list.push(file_name);
    that.setdata({
     upload: uploads,
     tempfilepaths: image_list
    });
    //上传成功一次img_index+1,下面再次调用upload_img上传图片就可以直接传image_list1[img_index],也就是下一张图片的链接
    img_index = img_index + 1;
    //这里需要作出判断图片是否上传完成,如果完成则取消缓冲框hidden
    if (img_index < image_list1.length) {
     upload_img(that, '' + image_list1[img_index]);
    } else {
     that.setdata({
      hidden: true
     });
    }
    //刷新界面
    that.update();
   } else {
    that.setdata({
     hidden: true
    });
    utils.show_toast(obj.msg);
   }
  },
  fail: function (res) {
   that.setdata({
    hidden: true
   });
   utils.show_toast('加入失败');
  }
 })
}

选择图片方法

if (that.data.tempfilepaths.length < 9) {
   wx.chooseimage({
    count: 9 - that.data.tempfilepaths.length, // 最多可以选择的图片张数,默认9
    sizetype: ['compressed'], // original 原图,compressed 压缩图,默认二者都有
    sourcetype: ['album', 'camera'], // album 从相册选图,camera 使用相机,默认二者都有
    success: function (res) {
     // success
     img_index = 0;
     image_list1=new array();
     //将选择的图片放入要上传的数组中
     for (var i = 0; i < res.tempfilepaths.length; i++) {
      console.log(i + ';' + res.tempfilepaths[i]);
      image_list1.push(res.tempfilepaths[i]);
     }
     //最开始上传第一张图片
     upload_img(that, '' + image_list1[img_index]);
    },
    fail: function () {
      utils.show_toast('选取失败');
    }
   })
  } else {
   utils.show_toast('当前最多只能选择9张图片');
  }

通过上面的代码就可以完成多图上传了,这样也避免了android手机报错的漏洞

这里封装了一个错误消息弹窗避免写重复的代码

utils.show_toast(‘当前最多只能选择9张图片')
//弹窗 
function show_toast(text) { 
wx.showtoast({ 
title: text, 
icon: ‘success', 
duration: 2000 
}); 
}

以上所述是小编给大家介绍的微信多图上传解决android多图上传失败问题,希望对大家有所帮助