如果我在 IE 10 和 FF 上发送 ajax 请求之前断开我的 wifi,请求将被中止。HTTP 状态码为 0,响应正文为空。
在 IE 8 上,响应代码为 12007 或 12019,响应正文也为空。
我必须对中止的请求进行一些错误处理。
我可以确定响应代码 12007 / 12019 对应于 IE8 中的中止请求吗?还是可以将其发送回其他错误?
我从MS doc看到这个错误意味着:
12019 ERROR_INTERNET_INCORRECT_HANDLE_STATE
The requested operation cannot be carried out because the
handle supplied is not in the correct state.
12007 ERROR_INTERNET_NAME_NOT_RESOLVED
The server name could not be resolved.
我只是想确保我认为这个错误只有在出现某种 n/w 故障时才可能发生是正确的。