wx.downloadFile({
url: 'https://cdn-koubei.mxklchina.com/kb/wifi/PDFlink.pdf',
filePath: wx.env.USER_DATA_PATH + "/PDF带链接测试" ,
success: function(res) {
console.log(res)
const tempPath = res.tempFilePath || res.filePath;
wx.openDocument({
filePath: tempPath,
fileType: 'pdf',
showMenu: false,
success: function(res) {
console.log('打开文档成功')
}
})
}
})
小程序中正常打开后,苹果版本可以点击链接跳转,但是安卓不行。都是最新版本的微信8.0.49
请具体描述问题出现的流程,并提供能复现问题的简单代码片段(https://developers.weixin.qq.com/miniprogram/dev/devtools/minicode.html)。
但是,苹果小程序可以打开后可以正常跳转,安卓不行。