当前位置:   article > 正文

微信小程序显示PDF文件

小程序显示pdf

需求:在小程序中显示PDF文件
思路:wx.openDocument打开新的网页,显示PDF文件

  1. <view @click="showPdf">点击查看协议</view>
  2. showPdf() {
  3. // let url = otption.currentTarget.dataset.index.keyValue;
  4. let url =
  5. "https://fs.mufengweilai.com/api/gym/2024/01/22/84f266eafdc945ac8e55f84da1693687.pdf";
  6. //打开pdf文件
  7. wx.showLoading({
  8. title: "加载中...",
  9. });
  10. wx.downloadFile({
  11. url: url,
  12. success: function (res) {
  13. const filePath = res.tempFilePath;
  14. wx.openDocument({
  15. filePath: filePath,
  16. success: function (res) {
  17. wx.hideLoading();
  18. },
  19. fail: function (res) {
  20. console.log("打开失败");
  21. },
  22. });
  23. },
  24. });
  25. },

声明:本文内容由网友自发贡献,不代表【wpsshop博客】立场,版权归原作者所有,本站不承担相应法律责任。如您发现有侵权的内容,请联系我们。转载请注明出处:https://www.wpsshop.cn/w/Cpp五条/article/detail/609006
推荐阅读
相关标签
  

闽ICP备14008679号