gpt4 book ai didi

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

转载 作者:搜寻专家 更新时间:2023-11-01 05:12:57 25 4
gpt4 key购买 nike

我一直在尝试创建一个小页面,它所做的只是更新源文档中的一些值。页面加载正常,但我没有从请求的来源获得结果。 .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 文档。

最佳答案

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

关于javascript - 为什么这个 jquery.get 函数不起作用?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/15837205/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com