gpt4 book ai didi

javascript - Jquery .ajax 获取 json 响应请求

转载 作者:行者123 更新时间:2023-11-30 16:54:34 25 4
gpt4 key购买 nike

<!DOCTYPE html>
<html>
<head>
<script src="http://ajax.googleapis.com/ajax/libs/jquery/1.11.2/jquery.min.js"></script>
<script>
$(document).ready(function(){
$("button").click(function(){
$.ajax({
type: 'GET',
url:"http://bustime.mta.info/api/siri/vehicle-monitoring.json",
data: {key: '',
OperatorRef:'MTA%20NYCT',
LineRef:'B54',
VehicleRef:'9531' },
dataType: 'json',
async: false,
success: function(result){
$("#div1").html(result);
}});
});
});
</script>
</head>
<body>

<div id="div1">Let jQuery AJAX Change This Text</div>

<button>Get External Content</button>

</body>

</html>

您好,我是 Javascript 和 Jquery 的新手,所以请原谅我的任何新手错误。我在这里要做的是向 mta api(http://bustime.mta.info/wiki/Developers/SIRIVehicleMonitoring)发送获取请求,并在用户单击按钮后打印 json 响应。单击按钮时,代码不会打印出任何内容。任何人都可以检测到上面代码的问题吗?我将不胜感激。

最佳答案

您需要将数据类型更改为jsonp 以避免CORS 限制。

JSONP 是一种在网络浏览器中运行的 JavaScript 程序中使用的技术,用于从不同域中的服务器请求数据。由于同源策略,这通常被 Web 浏览器禁止。维基百科提供的描述比我所能提供的要好得多。 See here .在向 API 发出 GET 请求时,这是您经常会遇到的事情,因此值得了解。

jquery 代码允许您在控制台中查看 JSON 对象,然后您可以随意操作它。我目前包含的方式会将 div 更改为 JSON 对象返回的时间戳。这个 jsfiddle 应该演示你正在寻找的东西 http://jsfiddle.net/zmxv2j7q/

        $(document).ready(function(){
$("button").click(function(){
$.ajax({
type: 'GET',
url:"http://bustime.mta.info/api/siri/vehicle-monitoring.json",
data: {key: '##################',
OperatorRef:'MTA%20NYCT',
LineRef:'B54',
VehicleRef:'9531' },
dataType: 'jsonp',
async: false,
success: function(result){
console.log(result.Siri)
$("#div1").html(result);
$("#div1").html(result.Siri.ServiceDelivery.ResponseTimestamp)
}});
});
});

关于javascript - Jquery .ajax 获取 json 响应请求,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/29930648/

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