小程序文件上传

// index.wxml
<view bindtap="upLoadFile">
    文件上传
</view>

// index.js
// 文件上传
upLoadFile(res){
    // 选择文件
    wx.chooseImage({
      count: 0,
      success: (res) => {
        // 上传到云存储
        wx.cloud.uploadFile({
          cloudPath: "test.png",
          filePath: res.tempFilePaths[0],
          success: (res) => {
            console.log(res)
          }
        })
      }
    })
},

小程序文件上传

上一篇:小程序云函数


下一篇:windows下安装RocketMQ ————一次故障排查