微信小程序----微信小程序浏览pdf文件

微信小程序----微信小程序浏览pdf文件

说明:通过wx.downloadFile,wx.openDocumen来实现打开pdf文件。只需在js操作即可。

HTTP.Config.Request('source/reportinfo', 'POST', { reportId: id })
    .then(function (i) {
      let datas = i.data;
      /************************/
      wx.downloadFile({
        url: datas,      //要预览的PDF的地址
        success: function (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); 
        }
      })

你可能感兴趣的:(微信小程序,微信小程序,小程序,javascript)