收藏
回答

使用wx.opendocument在线预览文档,必须打开调试模式才能用

框架类型 问题类型 API/组件名称 终端类型 微信版本 基础库版本
小程序 Bug wx.opendocument 微信iOS客户端 7.0.12 2.8.3
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) {}
})


回答关注问题邀请回答
收藏

3 个回答

登录 后发表内容
问题标签