微信小程序可以通过下载并打开pdf文档,但是用户要求可以保存和分享,查找了一下,只需要在wx.openDocument添加一项配置就可以了。
添加showMenu
wx.downloadFile({
// 示例 url,并非真实存在
url: configs.baseUrl + that.path,
success: function(res) {
const filePath = res.tempFilePath
wx.openDocument({
filePath: filePath,
showMenu: true,
success: function(res) {
console.log('打开文档成功')
}
})
}
})