我也遇到了这个问题,
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)
}
})
并不好使,不知道错在哪里。