const reportName = "这个是一个1/2的报告"
wx.downloadFile({
url: that.pdfUrl,
filePath: `${wx.env.USER_DATA_PATH}/${reportName}.pdf`,
success(res) {
wx.shareFileMessage({
filePath: res.filePath,
success(res) {},
fail() {
that.showToast('分享失败')
},
complete(res) {
console.log(res);
uni.hideLoading()
}
})
},
其中1/2 的/ 被当作了一个文件夹的路径 就进行了报错 downloadFile:fail permission denied, open
z这个1/2是有具体的含义的,没有办把/给替换删除了