首页
学习
活动
专区
圈层
工具
发布
首页
学习
活动
专区
圈层
工具
MCP广场
社区首页 >问答首页 >不同SCRIPT7002: XMLHttpRequest之间的差异:网络错误

不同SCRIPT7002: XMLHttpRequest之间的差异:网络错误
EN

Stack Overflow用户
提问于 2017-05-02 23:51:45
回答 1查看 2.2K关注 0票数 1

这里有大量的SCRIPT7002: XMLHttpRequest:网络错误。和其他许多人一样,我也很难理解我的错误的含义和根源(特别是00002efe/ 00002ef3 )。

只是我遇到的几个类似的错误:

代码语言:javascript
运行
复制
SCRIPT7002: XMLHttpRequest: Network Error 0x2f7d, Could not complete the operation due to error 00002f7d.
SCRIPT7002: XMLHttpRequest: Network Error 0x2ee7, Could not complete the operation due to error 00002ee.
SCRIPT7002: XMLHttpRequest: Network Error 0x2efe, Could not complete the operation due to error 00002efe.
SCRIPT7002: XMLHttpRequest: Network Error 0x2ef3, Could not complete the operation due to error 00002ef3.
SCRIPT7002: XMLHttpRequest: Network Error 0x2efd, Could not complete the operation due to error 00002efd.
SCRIPT7002: XMLHttpRequest: Network Error 0x2eff, Could not complete the operation due to error 00002eff.
SCRIPT7002: XMLHttpRequest: Network Error 0x2f76, Could not complete the operation due to error 00002f76.
SCRIPT7002: XMLHttpRequest: Network Error 0x2f78, Could not complete the operation due to error 00002f78.

我想知道是否有一个资源(文档)来解释这些不同的错误代码之间的区别以及它们的含义。

如有任何资料,将不胜感激。

EN

回答 1

Stack Overflow用户

回答已采纳

发布于 2017-05-03 23:54:14

好吧,我想我找到了答案。这个解决方案当然不涵盖每一个代码,但它得到了我正在寻找的信息。

以下是我所采取的步骤:

步骤1) (在Win中)打开计算器并切换到程序员模式。

步骤2)在计算器中选择"HEX“选项

步骤3)从消息中复制错误代码。(以零开头的错误,如00002efe)

步骤4)将错误代码粘贴到计算器。

步骤5)改为“”选项。

(步骤6)此时,您有错误的十进制值。我发现了两个网站,描述这些错误代码的含义。现在,转到其中一个网页:

这就是我的搜索结果:

代码语言:javascript
运行
复制
00002f7d => 12157 > ERROR_INTERNET_SECURITY_CHANNEL_ERROR
The application experienced an internal error loading the SSL libraries.

00002efe => 12030 > ERROR_INTERNET_CONNECTION_ABORTED
The connection with the server has been terminated.

00002ef3 => 12019 > ERROR_INTERNET_INCORRECT_HANDLE_STATE
The requested operation cannot be carried out because the handle supplied is not in the correct state.

00002efd => 12029 > ERROR_INTERNET_CANNOT_CONNECT
The attempt to connect to the server failed.

00002eff => 12031 > ERROR_INTERNET_CONNECTION_RESET
The connection with the server has been reset.

00002f76 => 12150 > ERROR_HTTP_HEADER_NOT_FOUND
The requested header could not be located.

00002f78 => 12152 > ERROR_HTTP_INVALID_SERVER_RESPONSE
The server response could not be parsed.

希望这对某人来说会很方便。

票数 3
EN
页面原文内容由Stack Overflow提供。腾讯云小微IT领域专用引擎提供翻译支持
原文链接:

https://stackoverflow.com/questions/43748949

复制
相关文章

相似问题

领券
问题归档专栏文章快讯文章归档关键词归档开发者手册归档开发者手册 Section 归档