wx.openDocument打不开Word,pc端能打开,手机鸿蒙系统打不开,其他格式能打开
l downloadFile: function(event) {
wx.showLoading({
title: '文档打开中...',
})
wx.cloud.downloadFile({
fileID: 'cloud://aihui-8g54m1fd5fd15fb1.6169-aihui-8g54m1fd5fd15fb1-1304903619/note/file/61882'
}).then(res => {
const filePath = res.tempFilePath
wx.openDocument({
filePath: filePath,
showMenu: true,
fileType:'doc',
success: res => {
console.log(res)
console.log('打开文档成功')
wx.hideLoading()
}
})
}).catch(error => {
// handle error
})
},