美文网首页
微信小程序打开doc、ppt、pdf等文档

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

作者: huanyer | 来源:发表于2018-06-04 15:42 被阅读0次

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

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

    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等文档

          本文链接:https://www.haomeiwen.com/subject/aekysftx.html