1. 程式人生 > >微信小程式開啟預覽下載的檔案

微信小程式開啟預覽下載的檔案

 有問題可以掃碼加我微信,有償解決問題。承接小程式開發。

微信小程式開發交流qq群   173683895  、 526474645 ;

正文:

使用 wx.openDocument(obj) 方法預覽

wx.downloadFile({
  url: 'http://example.com/somefile.pdf',
  success: function (res) {
    var filePath = res.tempFilePath
    wx.openDocument({
      filePath: filePath,
      success: function (res) {
        console.log('開啟文件成功')
      }
    })
  }
})

開啟預覽檔案亂碼解決方法:

在後臺設定contenttype;(檔案型別)



可以在小程式預覽了