docx文档通过wx.downloadfile下载后用wx.openDocument预览,在其他设备未发现问题,但是IOS16.0.2的iphone14上无法预览。此时通过右上角的按钮选择“使用其他应用打开”,是可以正常打开该docx文档的。
代码片段:
wx.downloadFile({
url: data.data,
filePath: wx.env.USER_DATA_PATH + "/" + data.msg,
success: function (res) {
console.log(res)
const filePath = res.filePath
wx.openDocument({
filePath: filePath,
fileType:"docx",
showMenu: true,
success: function (res) {
}
})
}
})
错误截图:
系统版本:
你好,麻烦提供出现问题的具体机型、微信版本号、系统版本号,以及能复现问题的代码片段(https://developers.weixin.qq.com/miniprogram/dev/devtools/minicode.html)
https://developers.weixin.qq.com/s/YB5T3bml76Dv