美文网首页
小程序-文档在线预览

小程序-文档在线预览

作者: 没_有_人 | 来源:发表于2018-11-09 16:34 被阅读0次

小程序api里有一个叫:wx.openDocument 功能是在新的页面打开文档

参数

通过文档可以看到filePath是通过downloadFile下载到临时路径

实例代码:

wx.downloadFile({
    url: 'www.file.com/file.ppt',//可以是后台传过来的路径
    success: function(res) {
        const filePath = res.tempFilePath
        wx.openDocument({
            filePath: filePath,
            success: function(res) {
                //成功
            }
        })
    }
})

注意:小程序本地文件储存的大小限制为10M

image.png

相关文章

网友评论

      本文标题:小程序-文档在线预览

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