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

溫馨提示×

溫馨提示×

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

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

微信小程序中如何上傳圖片到服務器

發布時間:2021-07-27 11:23:23 來源:億速云 閱讀:205 作者:小新 欄目:移動開發

這篇文章主要介紹微信小程序中如何上傳圖片到服務器,文中介紹的非常詳細,具有一定的參考價值,感興趣的小伙伴們一定要看完!

上傳圖片到服務器:

1.先在前端寫一個選擇圖片的區域來觸發wx.chooseImage接口并用wx.setStorage接口把圖片路徑存起來。

微信小程序中如何上傳圖片到服務器

-wxml
 <view class="shangchuan" bindtap="choose">
  <image style="width:100%;height:100%;" src="{{tempFilePaths}}"></image>
 </view>
 <button formType='submit' class="fabu">發布項目</button>
 /**選擇圖片 */
 choose: function () {
  var that = this
  wx.chooseImage({
   count: 1,
   sizeType: ['original', 'compressed'], // 可以指定是原圖還是壓縮圖,默認二者都有
   sourceType: ['album', 'camera'], // 可以指定來源是相冊還是相機,默認二者都有
   success: function (res) {
    var tempFilePaths = res.tempFilePaths
    that.setData({
     tempFilePaths: res.tempFilePaths
    })
    console.log(res.tempFilePaths)
    wx.setStorage({ key: "card", data: tempFilePaths[0] })
   }
  })
 },

2.使用wx.uploadFile將剛才上傳的圖片上傳到服務器上

 formSubmit2: function (e) {
    var that = this
    var card = wx.getStorageSync('card')
    wx.uploadFile({
     url: app.globalData.create_funds,
     filePath: card,
     name: 'card',
     formData: {
      'user_id': app.globalData.user_id,
      'person': e.detail.value.person,
      'company': e.detail.value.company,
     },
     success: function (res) {
      console.log(res)
     }
    })
   }
  }
 },

PS: 微信小程序上傳一或多張圖片

一.要點

1.選取圖片

wx.chooseImage({
   sizeType: [], // original 原圖,compressed 壓縮圖,默認二者都有
   sourceType: [], // album 從相冊選圖,camera 使用相機,默認二者都有
   success: function (res) {
    console.log(res);
    var array = res.tempFilePaths, //圖片的本地文件路徑列表
   }
  })

2.上傳圖片

wx.uploadFile({
   url: '', //開發者服務器的 url
   filePath: '', // 要上傳文件資源的路徑 String類型!!!
   name: 'uploadFile', // 文件對應的 key ,(后臺接口規定的關于圖片的請求參數)
   header: {
    'content-type': 'multipart/form-data'
   }, // 設置請求的 header
   formData: { }, // HTTP 請求中其他額外的參數
   success: function (res) {
   },
   fail: function (res) {
   }
  })

二.代碼示例

// 點擊上傳圖片
upShopLogo: function () {
  var that = this;
  wx.showActionSheet({
   itemList: ['從相冊中選擇', '拍照'],
   itemColor: "#f7982a",
   success: function (res) {
    if (!res.cancel) {
     if (res.tapIndex == 0) {
      that.chooseWxImageShop('album')  
     } else if (res.tapIndex == 1) {
      that.chooseWxImageShop('camera')
     }
    }
   }
  })
 },
 chooseWxImageShop: function (type) {
  var that = this;
  wx.chooseImage({
   sizeType: ['original', 'compressed'],
   sourceType: [type],
   success: function (res) {
/*上傳單張
    that.data.orderDetail.shopImage = res.tempFilePaths[0],
    that.upload_file(API_URL + 'shop/shopIcon', res.tempFilePaths[0])
*/
 /*上傳多張(遍歷數組,一次傳一張)
    for (var index in res.tempFilePaths) {
       that.upload_file(API_URL + 'shop/shopImage', res.tempFilePaths[index])
    }
*/
   }
  })
 },
upload_file: function (url, filePath) {
  var that = this;
  wx.uploadFile({
   url: url,
   filePath: filePath,
   name: 'uploadFile',
   header: {
    'content-type': 'multipart/form-data'
   }, // 設置請求的 header
   formData: { 'shopId': wx.getStorageSync('shopId') }, // HTTP 請求中其他額外的 form data
   success: function (res) {
    wx.showToast({
       title: "圖片修改成功",
       icon: 'success',
       duration: 700
      })
   },
   fail: function (res) {
   }
  })
 },

以上是“微信小程序中如何上傳圖片到服務器”這篇文章的所有內容,感謝各位的閱讀!希望分享的內容對大家有幫助,更多相關知識,歡迎關注億速云行業資訊頻道!

向AI問一下細節

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

AI

盈江县| 平谷区| 陆河县| 龙陵县| 土默特右旗| 滨州市| 神木县| 平定县| 富蕴县| 达拉特旗| 东宁县| 江华| 焦作市| 定日县| 明水县| 大兴区| 南郑县| 潍坊市| 井研县| 泾阳县| 盘锦市| 虞城县| 元谋县| 台中市| 延长县| 长春市| 高清| 繁昌县| 错那县| 宾川县| 公主岭市| 北辰区| 丰台区| 南华县| 永登县| 伽师县| 孟州市| 泸定县| 尤溪县| 保山市| 大方县|