openDocumen 在IOS上打不开.doc 文件?
发布于 5 年前 作者 xiulan56 8279 次浏览 来自 官方Issues

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)
          }
        })
      }
    });
 
  }
})
1 回复

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

回到顶部