公司最近有一个需求需要在小程序中查看政策并下载打开PDF附件,这里博主给大家总结了方法如下,主要用到了微信小程序的wx.downloadFile和wx.openDocument方法:
//下载PDF文件
function downLoadPDF(){
wx.showModal({
title: '提示',
content: '确认要打开此PDF政策文件吗?',
showCancel: true,
cancelText: '取消',
confirmText: '确定',
success: (result) => {
if (result.confirm) {
wx.downloadFile({
url: 'https://********/file/preview/XG-2019-01.pdf', //示例的url地址
success: function (resinfo) {
let path = resinfo.tempFilePath;
console.log(path, resinfo