怎么打开本地文档(word、pdf等)?

发布于 7 年前作者 jinglai3327 次浏览最后编辑 7 年前来自 ask

直接用

wx.openDocument 好像不能是本地路径?! wx.downloadFile 也不能加载本地路径?

2 回复
xiayin
xiayin1 楼6 年前

fileType

wx.openDocument({

filePath: filePath,

fileType:'',

success: function (res) {

console.log('打开文档成功')

},

guiying52
guiying522 楼5 年前

我也遇到了这个问题,

wx.downloadFile({

url: https://demo.jerei.com/resources/web/heql.doc,

success: function (res) {

var filePath = res.tempFilePath

wx.openDocument({

filePath: filePath,

success: function (res) {

console.log(‘打开文档成功’)

},

complete:e=>{

console.log(e)

}

})

并不好使,不知道错在哪里。