微信小程序打开PDF格式文件的方法

微信小程序打开PDF格式文件的方法

 

 wx.downloadFile({
      url: 'http://**.*****.***/reshaiwai/demo.pdf',      //要预览的PDF的地址
      success: function (res) {                           
        console.log(res);
        if (res.statusCode === 200) {                     //成功
          var Path = res.tempFilePath                     //返回的文件临时地址,用于后面打开本地预览所用
          wx.openDocument({
            filePath: Path,                               //要打开的文件路径
            success: function (res) {
              console.log('打开PDF成功');
            }
          })
        }
      },
      fail: function (res) {
        console.log(res);                                  //失败
      }
  })

 

posted @ 2021-03-03 11:27  国际路线  阅读(1437)  评论(0编辑  收藏  举报