代码片段如下:
wx.downloadFile({
url: api.FileRootPath + that.data.info.swReceivingRecords.attachment,
success: function (res) {
const filePath = res.tempFilePath
wx.openDocument({
filePath: filePath,
success: function (res) {
console.log('打开文档成功')
},
fail: function (res) {
console.log("fail");
console.log(res)
},
complete: function (res) {
wx.hideLoading();
console.log("complete");
console.log(res)
}
})
}
})
同一部分代码在android和IOS端都可以运行小程序打开pdf,在PC上不能打开。打开失败
请具体描述问题出现的流程,并提供能复现问题的简单代码片段(https://developers.weixin.qq.com/miniprogram/dev/devtools/minicode.html)。
我也遇到同样的问题,也加了fileType:pdf。记得以前可以打开。不知道为啥现在打不开了。。。。。。。。。。