使用云开发的微信小程序,在使用wx.downloadFile功能下载文件时,提示:
[读取文件/文件夹警告] 无法读取 cloud://xly-8g7p2-1309545976/files/援助申请表.doc 文件或文件夹不在白名单中, 上传时会被忽略, 在真机上可能无法读取。
导致,无法实现下载功能,请问如何解决?
程序代码如下:
wx.downloadFile({
url: 'cloud://xly-8g7pc311a74a6-法律援助申请表.doc',//文件路径
success: function (res) {
const filePath = res.tempFilePath
wx.openDocument({
filePath: filePath,
showMenu: true,
success: function (res) {
console.log('打开文档成功')
}
})
}
});
云开发应使用wx.cloud.downloadFile下载文件:https://developers.weixin.qq.com/miniprogram/dev/wxcloud/reference-sdk-api/storage/downloadFile/client.downloadFile.html