jquery ajax readystate 0 responsetext status 0 statustext error

时间:2013-10-16 04:38:24

标签: javascript jquery ajax

我收到了以下错误:jquery ajax readystate 0 responsetext status 0 statustext errorurl(http://www.tutorialspoint.com/prototype/prototype_ajax_response.htm),但是当我在本地主机上提供url(localhost:""/embparse_page)时它工作正常。

我尝试过使用我在Google搜索中找到的标题,我也使用了beforeSend:"",但它仍无效。

我认为主要问题是:XMLHttpRequest cannot load http://www.tutorialspoint.com/prototype/prototype_ajax_response.htm. Origin "local server" is not allowed by Access-Control-Allow-Origin.但我不明白。

任何人都可以向我解释这个问题,因为我对此很陌生。

<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns:ng="http://angularjs.org">
<head>
    <meta http-equiv="Content-Type" content="text/html; charset=iso-8859-1" />
    <meta Access-Control-Allow-Origin="*" />
    <title>Page Parsing</title>
    <script type="text/javascript" src="/js/jquery-1.9.1.min.js"></script>
    <script>
    getit=function(){
        jQuery.support.cors = true;
        $.ajax({
            type:"GET",
            url:"http://www.tutorialspoint.com/prototype/prototype_ajax_response.htm",
            dataType:"html",
            crossDomain:true,
            beforeSend: function(xhr) {
                xhr.overrideMimeType('text/plain;charset=UTF-8');
            },
            success:function(XMLHttpRequest,jqXHR ,data) {
                //alert(data.title);
                var starttitl=data.lastIndexOf('<title>');
                var endtitl=data.lastIndexOf('</title>');
                var title1=data.substring(starttitl+7,endtitl);
                alert(title1);
            },
            error:function(errorStatus,xhr) {
                alert("Error"+JSON.stringify(errorStatus));
            }
        });
    }   
    </script>
</head>
<body>
    <div id="siteloader">
        <input type="button" onclick="getit()" />
    </div>
</body>
</html>

5 个答案:

答案 0 :(得分:18)

我收到了这个错误,在我的情况下,这不是由于相同的原始政策。我从this link

那里得到了一些帮助

我的情况是,我有一个链接按钮,我没有使用e.PreventDefault()

<强> ASPX

<asp:LinkButton ID="lnkSearch" runat="server" CssClass="DockCmdSearch" CommandName="Search" OnClientClick="return VerifySearch(this, event);" />

<强>的Javascript

function VerifySearch(sender, e) {        
    e.preventDefault();
    $.ajax({
                type: 'POST',
    .............
    }
    return false;
}

答案 1 :(得分:0)

同源政策。当你在

时,浏览器不允许
http://site1.com

连接到:

site2.com
sub.site1.com
site1:99.com
https://site1.com (not sure about this one)

这是因为site1无法从site2窃取内容并假装它是site1的内容。这方面的方法是JSONP(谷歌地图使用我认为)和site2提供cors标题但jQuery 1不支持cors *(也许不在2. *中)因为IE在实现它时遇到一些问题。在这两种情况下,您都需要site2与您的网站合作,以便您的网站可以显示其内容。

如果你自己只使用它,那么你可以使用Firefox并安装forcecors插件。要激活,您可以选择view =&gt; toolbars =&gt;添加栏并单击屏幕右下角的“cors”文本。

答案 2 :(得分:0)

我从Ajax调用中得到了这个错误,为我修复它的原因只是输入'return false'。

答案 3 :(得分:0)

我对Nginx(服务器端)和AngularJs(用户端)有相同的问题
正如其他开发人员所说的Cor​​s问题一样,在这里我只想说说我是如何解决我的问题的,也许有人使用这种方法;)
首先,我在Nginx配置文件(在Linux-> / etc / nginx / sites-available /您的域)中添加了以下几行:

    add_header Access-Control-Allow-Origin *;
    add_header 'Access-Control-Allow-Credentials' 'true';
    add_header 'Access-Control-Allow-Methods' 'GET, POST, OPTIONS';
    add_header 'Access-Control-Allow-Headers' 'DNT,X-CustomHeader,Keep-Alive,User-Agent,X-Requested-With,If-Modified-Since,Cache-Control,Content-Type';

并通过angularJs发送这样的请求:

        $http({
            method: "POST",
            data: { //params},
            url: "//address",
            headers: { //if its form data
                "Accept": "application/json",
                "Content-Type": "application/x-www-form-urlencoded",
                "Cache-Control": "no-cache"
            },
            crossDomain: true,
            contentType: false,
            processData: false
        }).then(function mySucces(response) {
            alert(JSON.stringify(response));
        }, function myError(response) {
            alert("error");
        });

答案 4 :(得分:-3)

我正在测试为txt/XML数据读取json/xml文件并收到错误...读取的值:Status[0] & readyState[0]StatusText[error];这在Internet Explorer上成功运行但不在Chrome上,因为域必须相同

这就是修复它的原因

转到C:\ WINDOWS \ system32 \ drivers \ etc \ hosts

为您的localhost应用程序命名:

127.0.0.1   SampleSiteName.com

现在以http://SampleSiteName.com/YourAjaxFileName.htm打开chrome中的代码(如果它打开,则表示您已正确输入主机名) 转到您的HTML文件并提供您尝试阅读的文件的相对地址(如果FileToBeRead.txtYourAjaxFileName.htm位于同一文件夹中,则只需输入网址:&#34 ; /FileToBeRead.txt&#34)

现在您的代码也适用于Chrome。