需求:打開doc擎淤、ppt、pdf等文檔
需要先將文章下載到本地-wx.downloadFile秸仙,之后再打開-wx.openDocument
wx.downloadFile({
? ? ? url: 'http://file_url',
? ? ? success: function (res) {
? ? ? ? var filePath = res.tempFilePath
? ? ? ? wx.openDocument({
? ? ? ? ? filePath: filePath,
? ? ? ? ? success: function (res) {
? ? ? ? ? ? console.log('打開文檔成功')
? ? ? ? ? }
? ? ? ? })
? ? ? }
? ? })