收藏
回答

如何在微信小程序中阅读PDF文件,并且支持放大缩小呢?

如何在微信小程序中阅读PDF文件,并且支持放大缩小呢?

回答关注问题邀请回答
收藏

1 个回答

  • 微盟
    微盟
    2023-02-22

    wx.downloadFile({

            url: fileUrl, //要预览的PDF的地址

            success: function (res) {

              console.log(res);

              const tempPath = res.tempFilePath;

              wx.openDocument({

                filePath: tempPath, //要打开的文件路径

                success: function (res) {

                  console.log("打开PDF成功");

                },

              });

            },

            fail: function (res) {

              wx.showToast({

                icon: "none",

                title: "pdf加载失败",

              });

            },

          });


    2023-02-22
    有用
    回复 1
    • 凌惜
      凌惜
      2023-08-06
      可是我在开发者工具中测试,pdf是在浏览器中打开的
      2023-08-06
      回复
登录 后发表内容