小程序-文档在线预览

2018-11-09  本文已影响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
上一篇 下一篇

猜你喜欢

热点阅读