中文字幕av专区_日韩电影在线播放_精品国产精品久久一区免费式_av在线免费观看网站

溫馨提示×

溫馨提示×

您好,登錄后才能下訂單哦!

密碼登錄×
登錄注冊×
其他方式登錄
點擊 登錄注冊 即表示同意《億速云用戶服務條款》

微信小程序之批量上傳并壓縮圖片的實例代碼

發布時間:2020-09-14 19:37:47 來源:腳本之家 閱讀:543 作者:Jaiaxn 欄目:web開發

具體內容如下所示:

首先,要在.wxml文件里面創建一個canvas,作用是承載壓縮的圖片,以供上傳的時候獲取

這個canvas不能隱藏,否則沒效果,可以將其移至屏幕外。

<canvas canvas-id='attendCanvasId' class='myCanvas'></canvas>

然后呢,就是.js文件里面的方法了

// 點擊加_壓縮
 takePhoto: function () {
  var that = this;
  let imgViewList = that.data.imgViewList; //這個是用來承載頁面循環展示圖片的
   //拍照、從相冊選擇上傳
   wx.chooseImage({
    count: 4,  //這個是上傳的最大數量,默認為9
    sizeType: ['compressed'],  //這個可以理解為上傳的圖片質量類型(官方給的),雖然沒什么卵用,要不然還要我們自己寫壓縮做什么
    sourceType: ['album', 'camera'],  //這個是圖片來源,相冊或者相機
    success: function (res) {
     var tempFilePaths = res.tempFilePaths  //這個是選擇后返回的圖片列表
     that.getCanvasImg(0, 0, tempFilePaths);  //進行壓縮
    } 
   });
 },
 //壓縮并獲取圖片,這里用了遞歸的方法來解決canvas的draw方法延時的問題
 getCanvasImg: function (index,failNum, tempFilePaths){
  var that = this;
  if (index < tempFilePaths.length){
   const ctx = wx.createCanvasContext('attendCanvasId');
   ctx.drawImage(tempFilePaths[index], 0, 0, 300, 150);
   ctx.draw(true, function () {
    index = index + 1;//上傳成功的數量,上傳成功則加1
    wx.canvasToTempFilePath({
     canvasId: 'attendCanvasId',
     success: function success(res) {
      that.uploadCanvasImg(res.tempFilePath);
      that.getCanvasImg(index,failNum,tempFilePaths);
     }, fail: function (e) {
      failNum += 1;//失敗數量,可以用來提示用戶
      that.getCanvasImg(inedx,failNum,tempFilePaths);
     }
    });
   });
  }
 },
 //上傳圖片
 uploadCanvasImg: function (canvasImg){
  var that = this;
  let imgViewList = that.data.imgViewList;
  var tempImg = canvasImg;
  wx.uploadFile({
   url: app.d.fileServer,//文件服務器的地址
   filePath: tempImg,
   formData: {
    paramPath: "gift"
   },
   name: 'file',
   success: function (res) {
    var json2map = JSON.parse(res.data);
    imgViewList.push(app.d.imageUrlFix + json2map[0].fileUrl);
    that.setData({
     imgViewList: imgViewList,
    })
   }
  })
 },

總結

以上所述是小編給大家介紹的微信小程序之批量上傳并壓縮圖片的實例代碼,希望對大家有所幫助,如果大家有任何疑問請給我留言,小編會及時回復大家的。在此也非常感謝大家對億速云網站的支持!

向AI問一下細節

免責聲明:本站發布的內容(圖片、視頻和文字)以原創、轉載和分享為主,文章觀點不代表本網站立場,如果涉及侵權請聯系站長郵箱:is@yisu.com進行舉報,并提供相關證據,一經查實,將立刻刪除涉嫌侵權內容。

AI

阜平县| 绥江县| 苏尼特左旗| 襄樊市| 石城县| 丰宁| 南阳市| 长海县| 米易县| 尤溪县| 桑日县| 杭锦旗| 开平市| 尖扎县| 辽阳市| 婺源县| 安岳县| 潞西市| 嘉黎县| 德令哈市| 游戏| 安平县| 海南省| 汝城县| 民丰县| 房产| 祁东县| 吉木乃县| 彭阳县| 贺州市| 泰兴市| 扬中市| 洛南县| 罗源县| 体育| 晴隆县| 南平市| 锡林浩特市| 嘉义县| 花垣县| 咸阳市|