downloadFile

从云存储空间下载文件

请求参数

字段 说明 数据类型 默认值 必填
fileID 云文件 ID String - Y

Promise 返回参数

字段 说明 数据类型
fileContent 文件内容 Buffer
statusCode 服务器返回的 HTTP 状态码 Number

错误返回参数

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

使用示例

Promise 风格

  1. const cloud = require('wx-server-sdk')
  2. exports.main = async (event, context) => {
  3. const fileID = 'xxxx'
  4. const res = await cloud.downloadFile({
  5. fileID: fileID,
  6. })
  7. const buffer = res.fileContent
  8. return buffer.toString('utf8')
  9. }

原文: https://developers.weixin.qq.com/miniprogram/dev/wxcloud/reference-server-api/storage/downloadFile.html