小程序在线预览文档

// ----------------------手机调试小程序时,打开调试模式。否则也可能会加载不出文档
 wx.downloadFile({
            url: 'http://jytest.cqmxcx.cn/data/upload/bug1.doc', // 可以是后台返回的地址。这里写的是死的
            success: function (res) {
                var filePath = res.tempFilePath; // 小程序中文件的临时文件
                console.log(filePath);
                wx.openDocument({
                    filePath: filePath,
                    // 文档打开格式记得写上,否则可能不能打开文档。 文档类型只能是一个
                    // 若是想打开多种类型的文档,可以解析文档地址中的文档格式,动态复制到fileTpye参数
                    fileType: 'doc', 
                    success: function (res) {
                        console.log('打开文档成功')
                    },
                    fail: (e) => {
                        console.log(e);
                    }
                })
            }
        })

你可能感兴趣的:(微信小程序)