微信小程序+云开发技术(三)存储

3.存储

微信小程序+云开发技术(三)存储_第1张图片

  (1) API
  • 上传
wx.cloud.uploadFile({
     
  cloudPath: 'example.png', // 上传至云端的路径
  filePath: '', // 小程序临时文件路径
  success: res => {
     
    // 返回文件 ID
    console.log(res.fileID)
  },
  fail: console.error
})

上传成功后获得文件唯一ID,后续操作都基于文件ID而不是URL。

  • 下载
wx.cloud.downloadFile({
     
  fileID: '', // 文件 ID
  success: res => {
     
    // 返回临时文件路径
    console.log(res.tempFilePath)
  },
  fail: console.error
})
  • 删除
wx.cloud.deleteFile({
     
  fileList: ['a7xzcb'],
  success: res => {
     
    // handle success
    console.log(res.fileList)
  },
  fail: console.error
})
  • 换取临时链接
    用文件ID换取临时文件网络链接,文件链接有效期=2h:
wx.cloud.getTempFileURL({
     
  fileList: ['cloud://xxx.png'],
  success: res => {
     
    // fileList 是一个有如下结构的对象数组
    // [{
     
    //    fileID: 'cloud://xxx.png', // 文件 ID
    //    tempFileURL: '', // 临时文件网络链接
    //    maxAge: 120 * 60 * 1000, // 有效期
    // }]
    console.log(res.fileList)
  },
  fail: console.error
})
  (2) 命名规则

微信小程序+云开发技术(三)存储_第2张图片

你可能感兴趣的:(云开发,微信小程序,程序人生)