有很多SCRIPT7002:XMLHttpRequest:网络错误。 我和许多其他人一样,也很难理解我的错误的含义和根本原因(特别是00002efe / 00002ef3)。
我遇到的一些类似错误:
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.
我想了解是否有资源(文档)解释了这些不同错误代码之间的区别以及它们的含义。
非常感谢任何信息。
答案 0 :(得分:2)
好的,我想我找到了答案。这个解决方案当然不会覆盖每一个代码,但它会让我获得我正在寻找的信息。
以下是我采取的步骤:
第1步)(在Win中)打开计算器并切换到程序员模式。
第2步)选择" HEX"计算器中的选项
第3步)从邮件中复制错误代码。 (错误以零开头,例如00002efe)
第4步)将错误代码粘贴到您的计算器中。
第5步)更改为" DEC"选项。
步骤6 )此时,您将获得错误的十进制值。 我找到了两个描述这些错误代码含义的网站。 现在,转到其中一个网页:
这是我搜索的结果:
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.
希望这对某人来说很方便。