怎么打开本地文档(word、pdf等)?
发布于 5 年前 作者 jinglai 3186 次浏览 来自 问答

直接用

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

2 回复

fileType

wx.openDocument({

filePath: filePath,

fileType:'',

success: function (res) {

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

},

我也遇到了这个问题,

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)

}

})

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

回到顶部