wx.cloud.downloadFile

从云存储空间下载文件

请求参数

字段说明数据类型默认值必填
fileID云文件 IDString-Y
config配置Object-N
success成功回调
fail失败回调
complete结束回调

config 对象定义

字段说明数据类型
env使用的环境 ID,填写后忽略 init 指定的环境String

success 返回参数

字段说明数据类型
tempFilePath临时文件路径String
statusCode服务器返回的 HTTP 状态码Number
errMsg成功为 downloadFile:ok,失败为失败原因String

fail 返回参数

字段说明数据类型
errCode错误码Number
errMsg错误信息,格式 downloadFile:fail msgString

使用示例

Callback 风格

  1. wx.cloud.downloadFile({
  2. fileID: 'a7xzcb',
  3. success: res => {
  4. // get temp file path
  5. console.log(res.tempFilePath)
  6. },
  7. fail: err => {
  8. // handle error
  9. }
  10. })

Promise 风格

  1. wx.cloud.downloadFile({
  2. fileID: 'a7xzcb'
  3. }).then(res => {
  4. // get temp file path
  5. console.log(res.tempFilePath)
  6. }).catch(error => {
  7. // handle error
  8. })

返回值如果请求参数中带有 success/fail/complete 回调中的任一个,则会返回一个 downloadTask 对象,通过 downloadTask 对象可监听上传进度变化事件,以及取消上传任务。