openDocument打开PDF文件,里面的链接苹果手机可以正常跳转,安卓手机不行。
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