目录

小程序预览线上pdf等文件

目录

小程序预览线上pdf等文件

实现方法:

1.直接使用web-view

<web-view :webview-styles=“webviewStyles” src=“xxxxx”>

该方法只在ios有效

2.使用小程序api,wx.downloadFile先下载文件再用wx.openDocument打开文件

wx.downloadFile({
  url: 'http://example.com/somefile.pdf',
  success: function (res) {
    const filePath = res.tempFilePath
    wx.openDocument({
      filePath: filePath,
      success: function (res) {
        console.log('打开文档成功')
      }
    })
  }
})