微信小程序打开doc、ppt、pdf等文档

需求:打开doc、ppt、pdf等文档

需要先将文章下载到本地-wx.downloadFile,之后再打开-wx.openDocument

微信小程序打开doc、ppt、pdf等文档_第1张图片

wx.downloadFile({

      url: 'http://video.317hu.com/917b3140-3da6-47d5-911c-a15462fcdeb2.pdf',

      success: function (res) {

        var filePath = res.tempFilePath

        wx.openDocument({

          filePath: filePath,

          success: function (res) {

            console.log('打开文档成功')

          }

        })

      }

    })

你可能感兴趣的:(微信小程序打开doc、ppt、pdf等文档)