wx.openDocument 在 IOS上 打开doc文件后为白屏, 用 web-view 的话 提示
App({ onLaunch: function() { var url = 'https://files.oss.biaojingli.com/biao-admin/tender/2019/9/24/1569296059911-4890.doc'; wx.downloadFile({ url: url, success: function(res) { var file = res.tempFilePath; wx.openDocument({ filePath: file, fileType: "doc", success: function(res){ console.log("success"); }, fail: function(err){ console.log("error", err) } }) } }); }}) |

该网址直接在微信打开也是一样的提示,请自查