使用wx.opendocument在线预览文档,必须打开调试模式才能用
发布于 6 年前 作者 xiuying45 6615 次浏览 来自 官方Issues
wx.downloadFile({
    url: this.resume,
    success: function(res) {
        var filePath = res.tempFilePath,
            index1 = filePath.lastIndexOf('.'),
            index2 = filePath.length,
            suffix = filePath.substring(index1 + 1, index2)
        console.log('filePath', filePath)
        wx.openDocument({
            filePath: filePath,
            fileType: suffix,
            success: function(res) {
                console.log('打开文档成功')
            },
            fail: (e) => {
                console.log(e)
            }
        })
    },
    fail: function(res) {
        console.log(res)
        console.log('文件下载失败')
    },
    complete: function(res) {}
})
回到顶部