weixin,微信小程序中怎么打开一个PDF文件

2024-12-16 10:19:15
推荐回答(2个)
回答1:

可在手机先安装WPS软件或Adobe Reader软件阅读PDF文档 。

回答2:

wx.downloadFile({
url: 'http://example.com/somefile.pdf',
success: function (res) {
var filePath = res.tempFilePath
wx.openDocument({
filePath: filePath,
success: function (res) {
console.log('打开文档成功')
}
})
}
})