记录微信小程序预览pdf文件,修改pdf名字安卓和ios都可用。
1.安卓和苹果的效果
2.需要用到的api
1.wx.downloadFile
wx.downloadFile 下载文件资源到本地。客户端直接发起一个 HTTPS GET 请求,返回文件的本地临时路径 (本地路径),单次下载允许的最大文件为 200MB。
2.wx.openDocument
wx.openDocument 新开页面打开文档。
3.代码实现
downPdf(){let that = thiswx.showLoading({title: "资源下载中...",});const fileName = '测试一下'//下载文件资源到本地wx.downloadFile({url: that.pdfUrl, //后端返回的pdf路径filePath:`${wx.env.USER_DATA_PATH}/${fileName}.pdf`,//自定义pdf文件名success: function(res) {const filePath = res.filePath || res.tempFilePath wx.openDocument({showMenu:true, //分享按钮filePath: filePath,success: function(res) {wx.hideLoading();}})}})},