收藏
回答

openDocument打开PDF文件,里面的链接苹果手机可以正常跳转,安卓手机不行。

框架类型 问题类型 API/组件名称 终端类型 微信版本 基础库版本
小程序 Bug wx.openDocument(Object object) 微信安卓客户端 8.0.49 3.4.3
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
回答关注问题邀请回答
收藏

1 个回答

登录 后发表内容