这里有大量的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.
我想知道是否有一个资源(文档)来解释这些不同的错误代码之间的区别以及它们的含义。
如有任何资料,将不胜感激。
发布于 2017-05-03 23:54:14
好吧,我想我找到了答案。这个解决方案当然不涵盖每一个代码,但它得到了我正在寻找的信息。
以下是我所采取的步骤:
步骤1) (在Win中)打开计算器并切换到程序员模式。
步骤2)在计算器中选择"HEX“选项
步骤3)从消息中复制错误代码。(以零开头的错误,如00002efe)
步骤4)将错误代码粘贴到计算器。
步骤5)改为“”选项。
(步骤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.
希望这对某人来说会很方便。
https://stackoverflow.com/questions/43748949
复制相似问题