IE https CORS XHR 请求因 Script7002 失败:XMLHttpRequest:网络错误 0x2e

IE https CORS XHR request fails with Script7002: XMLHttpRequest: Network Error 0x2eff(IE https CORS XHR 请求因 Script7002 失败:XMLHttpRequest:网络错误 0x2eff)
本文介绍了IE https CORS XHR 请求因 Script7002 失败:XMLHttpRequest:网络错误 0x2eff的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着跟版网的小编来一起学习吧!

问题描述

限时送ChatGPT账号..

在所有其他非 IE 浏览器中,以下代码片段效果很好:

In all other non-IE browsers, the following code snippet works great:

<!DOCTYPE html>
<html>
<script type="text/javascript">
var xhr = new XMLHttpRequest();
var url = "https://otherdomain.com";
var method = "GET";
xhr.open(method, url, true);

xhr.onload = function() {
 var responseText = xhr.responseText;
 document.write(responseText);
};

xhr.send()

</script>
</html>

在两个不同的 IE11 浏览器(在不同的操作系统版本上运行),我得到两个不同的错误:

In two different IE11 browsers (running on different OS versions), I get two different errors:

  1. IE11 Win7:Script7002:XMLHttpRequest:网络错误 0x80070005,访问被拒绝.
  2. IE11 Win8: Script7002: XMLHttpRequest: Network Error 0x2eff 由于错误 00002eff 无法完成操作

Google 搜索上述错误代码并没有找到任何有用的信息.我尝试设置 Content-Type,为 onprogress 和 onload 添加虚拟函数,但无济于事.

Google searches for the above error codes don't turn up anything useful. I've tried setting Content-Type, adding dummy functions for onprogress and onload, to no avail.

推荐答案

想通了.

在我们的案例中,在之前的项目中,我们更改了 IE 允许我们使用的 SSL 协议.Ajax 请求失败,因为不允许 IE 根据自定义配置协商 SSL 握手.

In our case, on a previous project we had changed which SSL protocols were allowed by IE to us. Ajax requests were failing because IE was not allowed to negotiate the SSL handshakes based on the custom configuration.

解决方案是打开 Internet 选项,选择高级"选项卡,然后单击恢复高级设置"按钮.之后,Ajax 请求运行良好.

希望这可以节省我花在这上面的 6 个小时左右的时间!

Hopefully this saves someone else the 6 hours or so I spent on this!

这篇关于IE https CORS XHR 请求因 Script7002 失败:XMLHttpRequest:网络错误 0x2eff的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持跟版网!

本站部分内容来源互联网,如果有图片或者内容侵犯了您的权益,请联系我们,我们会在确认后第一时间进行删除!

相关文档推荐

Show a progress bar for downloading files using XHR2/AJAX(显示使用 XHR2/AJAX 下载文件的进度条)
How do I get the HTTP status code with jQuery?(如何使用 jQuery 获取 HTTP 状态码?)
How to get response url in XMLHttpRequest?(如何在 XMLHttpRequest 中获取响应 url?)
WebKit quot;Refused to set unsafe header #39;content-length#39;quot;(WebKit “拒绝设置不安全的标头‘内容长度’)
$.ajax call working fine in IE8 and Doesn#39;t work in firefox and chrome browsers($.ajax 调用在 IE8 中运行良好,但在 Firefox 和 chrome 浏览器中不起作用)
How do I know if jQuery has an Ajax request pending?(我如何知道 jQuery 是否有待处理的 Ajax 请求?)