【微信小程序】云存储上传图片

云存储上传图片

//上传图片
  upload(){
    // 选择图片
    wx.chooseImage({
      count: 1,  //图片数量
      sizeType: ['compressed'],  //压缩图
      sourceType: ['album', 'camera'], //拍照  or  相册
      success:  (res)=> {
        wx.showLoading({
          title: '上传中',
        })
        const filePath = res.tempFilePaths[0]  //324324.png
        // 上传图片
        const cloudPath = 'my-image'+Date.now() + filePath.match(/\.[^.]+?$/)[0]
        wx.cloud.uploadFile({ //上传图片到云存储
          cloudPath,  //云存储路径
          filePath,   //本地图片路径
          success: res => {
            console.log('[上传文件] 成功:', res)
            this.setData({
              imgUrl:res.fileID
            })
          },
          fail: e => {
            console.error('[上传文件] 失败:', e)
            wx.showToast({
              icon: 'none',
              title: '上传失败',
            })
          },
          complete: () => {
            wx.hideLoading()
          }
        })
      },
      fail: e => {
        console.error(e)
      }
    })
  },

你可能感兴趣的:(小程序,小程序)