小程序中打开pdf文件(wx.downloadFile+wx.openDocument)
短信预约 -IT技能 免费直播动态提醒
用 wx.downloadFile({}) 下载,然后 用 wx.openDocument({}) 打开文件
先请求到 pdf 路径网络地址,将 pdf 下载到本地
从本地文件上传到一个临时路径中,将本地文件删除
打开临时路径的文件
注意:需要在开发者管理中,配置一下downloadFile合法域名:
微信公众平台-->开发管理-->开发设置-->downloadFile合法域名
openHandle() { let that = this; const fileExtName = ".pdf"; const randfile = new Date().getTime() + fileExtName; const newPath = `${wx.env.USER_DATA_PATH}/${randfile}`; // 定义一个临时路径 that.deletContract(); // 将本地文件删除 wx.downloadFile({ url: "", // 网络文件的地址 header: { "content-type": "application/pdf", Authorization: wx.getStorageSync("token"), }, filePath: newPath, success: function (res) { const filePath = res.tempFilePath; wx.openDocument({ filePath: newPath, showMenu: true, fileType: "pdf", success: function (res) {}, }); }, fail: function (res) { wx.hideLoading(); }, }); }, // 删除本地文件 deletContract() { try { let file = wx.getFileSystemManager(); file.readdir({ dirPath: `${wx.env.USER_DATA_PATH}`, success: (res) => { if (res.files.length > 2) { file.unlink({ filePath: `${wx.env.USER_DATA_PATH}/${res.files[0]}`, complete: (res) => {}, }); } }, }); } catch (error) {} },
来源地址:https://blog.csdn.net/LXY_1999/article/details/128012155
免责声明:
① 本站未注明“稿件来源”的信息均来自网络整理。其文字、图片和音视频稿件的所属权归原作者所有。本站收集整理出于非商业性的教育和科研之目的,并不意味着本站赞同其观点或证实其内容的真实性。仅作为临时的测试数据,供内部测试之用。本站并未授权任何人以任何方式主动获取本站任何信息。
② 本站未注明“稿件来源”的临时测试数据将在测试完成后最终做删除处理。有问题或投稿请发送至: 邮箱/279061341@qq.com QQ/279061341