openDocumen 在IOS上打不开.doc 文件?
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) } }) } }); } }) |