JQuery Ajax返回错误

时间:2013-08-22 18:56:29

标签: php jquery ajax web

我正在使用此代码:

function fetchGame(xval,oval) {
            $.get("games.php", { x: xval, o: oval }, function(xml,status) {
                $("#game").empty();
                var row;
                $(xml).find("value").each(function(index, value) {
                    if ( index % 3 == 0) {
                        row = $("<tr></tr>");
                        $("#game").append(row);
                    }
                    console.log($("<td width=\"50\" height=\"50\"></td>").text(value));
                    row.append($("<td width=\"50\" height=\"50\"></td>").text(value));
                });

            },"xml");
        }

我正在抓住Ajax错误:

        $.ajaxSetup({
  error: function(xhr, status, error) {
    alert("An AJAX error occured: " + status + "\nError: " + error + "\nText : "+ xhr.ResponseText+"\nXML : "+xhr.ResponseXML);

  }
});

您可以在我正在为网络课程构建的网站中看到它的工作原理:

http://62.219.127.85/sites/2013b/xox/xo.php?x=7&o=8

并看到返回xml有效且正确:

http://62.219.127.85/sites/2013b/xox/games.php?x=7&o=8

对于那些不想进入网站的人,它会返回:

<game>
    <x>
        <id>7</id>
        <id>Ofek Ron</id>
    </x>
    <o>
        <id>8</id>
        <id>Avi Fahima</id>
    </o>
    <value>o</value>
    <value>x</value>
    <value>-</value>
    <value>x</value>
    <value>0</value>
    <value>x</value>
    <value>x</value>
    <value>o</value>
    <value>o</value>
</game>

然而,我在get请求中得到了这个奇怪的错误,这是非常无法提供的“错误”是他们可以给我的所有信息: Error

0 个答案:

没有答案