我试图检测 XMLHttpRequest ()何时由于交叉起源错误而不是错误请求而失败。例如:
ajaxObj=new XMLHttpRequest()
ajaxObj.open("GET", url, true);
ajaxObj.send(null);
考虑4种情况下的 url:
案例1: url 是一个正确设置了访问控制允许源的有效地址
http://192.168.8.35
,其中我有一个在头部设置了 Access-Control-Allow-Origin: *
的服务器案例2: url 是现有服务器上的无效地址
http://xyz.google.com
,其中服务器响应但不是有效请求案例3: url 指向一个不存在的服务器 ip 地址
http://192.168.8.6
在我的本地网络中没有任何响应案例4: url 是一个有效的地址,其中 access-control-allow-source 是 没有集
http://192.168.8.247
,其中在头部设置了一个服务器 没有Access-Control-Allow-Origin: *
问题是: 如何区分案例4(访问控制允许起源错误)和案例2和案例3?
在案例4中,Chrome 调试控制台显示错误:
XMLHttpRequest cannot load http://192.168.8.247/. Origin http://localhost is not allowed by Access-Control-Allow-Origin.
如何在 Javascript 中使该错误为人所知?
我试图找到一些迹象在 ajaxObj
,但似乎没有什么不同的情况下2和3。
下面是我使用的一个简单测试:
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml">
<head>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
<title>CORS Test</title>
<script type="text/javascript">
function PgBoot()
{
// doCORS("http://192.168.8.35"); // Case 1
// doCORS("http://xyz.google.com"); // Case 2
doCORS("http://192.168.8.6"); // Case 3
// doCORS("http://192.168.8.247"); // Case 4
}
function doCORS(url)
{
document.getElementById("statusDiv").innerHTML+="Processing url="+url+"<br>";
var ajaxObj=new XMLHttpRequest();
ajaxObj.overrideMimeType('text/xml');
ajaxObj.onreadystatechange = function()
{
var stat=document.getElementById("statusDiv");
stat.innerHTML+="readyState="+ajaxObj.readyState;
if(ajaxObj.readyState==4)
stat.innerHTML+=", status="+ajaxObj.status;
stat.innerHTML+="<br>";
}
ajaxObj.open("GET", url, true);
ajaxObj.send(null);
}
</script>
</head>
<body onload="PgBoot()">
<div id="statusDiv"></div>
</body>
</html>
使用铬的结果:
Processing url=http://192.168.8.35
readyState=1
readyState=2
readyState=3
readyState=4, status=200
Processing url=http://xyz.google.com
readyState=1
readyState=4, status=0
Processing url=http://192.168.8.6
readyState=1
readyState=4, status=0
Processing url=http://192.168.8.247
readyState=1
readyState=4, status=0