【云开发】wx.cloud.downloadFile下载报错?
前端使用wx.cloud.downloadFile下载
在云存储中确实存在该文件,并且权限也设置成可读写了。
但是一直报错"Error: errCode: 1 | errMsg: STORAGE_FILE_NONEXIST
wx.cloud.downloadFile({ fileID: cloud: //test-wro3n.7465-test-wro3n-1300077222/gameRes/1.0.0/res/import/07/07ce7530a.f5ba6.json, }).then(res => { // get temp file path console.log(res.tempFilePath); callback && callback( null , res.tempFilePath); }). catch (error => { // handle error console.warn( "Download file failed: " + remoteUrl); console.warn(error.errMsg); callback && callback( new Error(error.errMsg), null ); }) |