下载文件流。
字段名 | 类型 | 必选 | 默认值 | 说明 |
fileId | string | 是 | - | 文件资源Id |
返回Promise对象, resolve结果为Buffer对象。
exports.downloadFile = async (context) => { const cloud = context.cloud; let fileId = 'cloud://1lhlioigaono-test-aaa'; let result; try{ result = await cloud.file.downloadFile({fileId}) }catch(e){ console.log("e",e) } console.log("downloadFileResult",result); return 'downloadFile'; };