NETWORK_ERR:XMLHttpRequest异常101

时间:2011-08-06 09:34:35

标签: javascript ajax google-chrome xmlhttprequest

我在Chrome中遇到了AJAX问题,出现以下错误:

Uncaught Error: NETWORK_ERR: XMLHttpRequest Exception 101

这是我的代码:

function IO(filename) {
    if (window.XMLHttpRequest) { // Mozilla, Safari,...
        xmlhttp = new XMLHttpRequest();

    } else if (window.ActiveXObject) { // IE
        try {
            xmlhttp = new ActiveXObject("Msxml2.XMLHTTP");
        } catch (e) {
            try {
                xmlhttp = new ActiveXObject("Microsoft.XMLHTTP");
            } catch (e) { }
        }
    }

    xmlhttp.open("GET", filename+"?random="+Math.floor(Math.random()*100000001), false);
    xmlhttp.send();

    if(xmlhttp.readyState==4)
        return xmlhttp.responseXML;
}

2 个答案:

答案 0 :(得分:12)

解决方案是将async参数设置为true

xmlhttp.open("GET", filename+"?random="+Math.floor(Math.random()*100000001), true);

答案 1 :(得分:2)

除了在没有正确标头的情况下获取跨站点URL时,在通过XHR(AJAX)获取本地文件时会发生此错误。显然,Chrome的跨站点安全措施过于热心,没有意识到一个文件:URL应被视为与另一个文件相同的站点:URL。对于许多自行开发的应用程序来说,这是一个问题,尤其是Jasmine(JavaScript测试框架)。

自Chrome版本16.0.912.63起仍在发生。

我不知道任何解决方案。解决方法是使用Firefox或任何其他浏览器来运行由文件提供的应用程序:URL。