为什么这个jquery.get函数不起作用?

时间:2013-04-05 15:00:43

标签: javascript jquery

我一直在尝试创建一个小页面,它只是从源文档更新一些值。页面加载正常,但我没有从请求的源获得结果。 .fail函数会运行,但textStatuserrorThrown值不会出现在弹出的alert()窗口中。

我是javascript和jquery的新手。我试图将这些与网上发现的碎片混在一起来弄明白,但似乎没有任何效果。主要是,这是我认为我正在倒下的反应......

无论如何,这是代码:

<html>
    <head>
      <title></title>
      <script type="text/javascript" src="~/Scripts/jquery-1.9.1.js"></script>

  <script type="text/javascript">

    function update() {
      $.ajax({
        type: "GET",
        url: "http://192.168.2.86:15890/linearlist.xml",
        dataType: "xml"
      }).done(function (res) {
       //alert(res);
      }).fail(function (jqXHR, textStatus, errorThrown) {
        alert("AJAX call failed: " + textStatus + ", " + errorThrown);
      });
    }

  function GetData() {
    update();
    setTimeout(function () {
      GetData();
    }, 50);
  }
});

  </script>
</head>
<body>
<script type="text/javascript">
    GetData();
</script>
  <div class="result"> result div</div>
</body>
</html>

更新:

我已经更新了我的代码:@ Ian的回答。遗憾的是,它仍然无法正常工作。我也没有收到textStatuserrorThrown结果。我已经尝试通过VS2012调试Internet Explorer,但它并没有让我走得太远。如果我将URL放入网页,我可以查看XML文档。

1 个答案:

答案 0 :(得分:7)

$.get不接受一个参数作为对象文字;它接受了几个:http://api.jquery.com/jQuery.get/#jQuery-get1

您可能会考虑使用$.ajax语法:http://api.jquery.com/jQuery.ajax/

无论如何,称之为:

$.get("http://192.168.2.86:15890//onair.status.xml", {}, function (res) {
    var xml;
    var tmp;
    if (typeof res == "string") {
        tmp = "<root>" + res + "</root>";
        xml = new ActiveXObject("Microsoft.XMLDOM");
        xml.async = false;
        xml.loadXML(res);
    } else {
        xml = res;
    }
    alert("Success!");
}, "text");

或使用$.ajax

$.ajax({
    type: "GET",
    url: "http://192.168.2.86:15890//onair.status.xml",
    dataType: "text"
}).done(function (res) {
    // Your `success` code
}).fail(function (jqXHR, textStatus, errorThrown) {
    alert("AJAX call failed: " + textStatus + ", " + errorThrown);
});

使用fail方法,您可以看到发生了错误,并说明了原因。

取决于http://192.168.2.86:15890的内容/位置,由于原始政策相同,您可能无法进行AJAX调用 - https://developer.mozilla.org/en-US/docs/JavaScript/Same_origin_policy_for_JavaScript

我知道您在success回调中有一些逻辑,但我很确定您是否将dataType指定为“文字”,res变量将始终是一个字符串。因此,if / else不应该做太多 - else永远不会执行。无论哪种方式,如果您期望XML,将dataType指定为“xml”可能更容易。