5

我一直在尝试创建一个小页面,它所做的只是更新源文档中的一些值。页面加载正常,但我没有从请求的来源获得结果。.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 的答案。它仍然无法正常工作,可悲的是。我也没有得到textStatusorerrorThrown结果。我已经尝试通过 VS2012 使用 Internet Explorer 进行调试,但这并没有让我走得太远。如果我将 URL 放入网页中,我可以查看 XML 文档。

4

1 回答 1

10

$.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”可能更容易。

于 2013-04-05T15:06:09.927 回答