javascript
gotoPDF(pdfName) {
uni.showLoading({
title: 'loading'
});
wx.downloadFile({
url: `http://211.153.55.36:4426/${pdfName}.pdf`, // 服务器上的pdf文件地址
success: function(res) {
const filePath = res.tempFilePath
wx.openDocument({
filePath: filePath,
fileType: 'pdf',
showMenu: true,
success: function(res) {
uni.hideLoading()
console.log('打开文档成功')
},
fail: function(err) {
uni.hideLoading()
console.log('fail:' + JSON.stringify(err));
},
})
}
})
}