根据上传后取得的fileId(cloud://)获取授权的url。
字段名 | 类型 | 必选 | 默认值 | 说明 |
fileId |
string[] | 是 | - | 文件资源Id: 获取单个填string,获取多个填string数组。 |
返回Promise对象, resolve结果为:
字段名 | 说明 |
result.fileId |
文件资源Id |
result.url |
授权的临时访问URL |
exports.getTempFileURL = async (context) => { const cloud = context.cloud; let fileId = 'cloud://1lhlioigaono-test-aaa'; let result; try{ result = await cloud.file.getTempFileURL({fileId}) }catch(e){ console.log("e",e) } console.log("getTempFileURLResult",result); return 'getTempFileURL'; };