微信小程序上传图片(限制图片大小、张数)

2022/3/1 12:22:45

本文主要是介绍微信小程序上传图片(限制图片大小、张数),对大家解决编程问题具有一定的参考价值,需要的程序猿们随着小编来一起学习吧!

代码:

//选择图片
  choice: function () {
    var that = this
    console.log(that.data.imgsrc.length);
    if (that.data.imgsrc.length <= 3) {
      var ino = 4 - that.data.imgsrc.length;
      wx.chooseImage({  //从本地相册选择图片或使用相机拍照
        count: ino,
        sizeType: ['compressed'], // 可以指定是原图还是压缩图,默认二者都有  
        sourceType: ['album', 'camera'], // 可以指定来源是相册还是相机,默认二者都有  
        success: (res) => {
          var tempFilePaths = res.tempFilePaths
          for (var item in res.tempFilePaths) {
            console.log(res.tempFilePaths[item]);
            that.data.imgsrc.push(res.tempFilePaths[item]);
            tempFilePaths = that.data.imgsrc;
            console.log(that.data.imgsrc);
          }

          let size = tempFilePaths.every(item => {   //限制上传图片大小为2M,所有图片少于2M才能上传
            return item.size <= 2000000
          })
          if (size) {
            that.setData({
              imgsrc: tempFilePaths
            })
          }else{
            wx.showToast({
              title:'上传图片不能大于2M!',
              icon:'none'    
            })
          }
        }
      })
    }
    else {
      wx.showToast({
        title: "最多只能上传4张图片",
        image: "/images/icon-warning.png",
      });
    }
  },

 



这篇关于微信小程序上传图片(限制图片大小、张数)的文章就介绍到这儿,希望我们推荐的文章对大家有所帮助,也希望大家多多支持为之网!


扫一扫关注最新编程教程