gpt4 book ai didi

jquery - getJSON 返回未定义

转载 作者:行者123 更新时间:2023-12-01 06:49:35 29 4
gpt4 key购买 nike

我想从返回的 JSON 格式获取纬度和经度,但它返回未定义的

这是我到目前为止的代码,json格式请看看URL到底返回了什么

$.ajax({
type: 'GET',
url: "http://maps.googleapis.com/maps/api/geocode/json?address=Garibaldi,Prishtina&sensor=true",
dataType: 'json',
success: function (data) {

$.each(data, function () {
$.each(this, function (key, value) {
switch (key) {

case "lat":
alert(value) // access to this node works fine
break;

default:
alert(value[0].geometry.location.lat) // this is undefined
break;
}
});
});
}
});

有人知道如何解决这个问题吗?

最佳答案

为什么不只是...

$.ajax({
type: 'GET',
url: "http://maps.googleapis.com/maps/api/geocode/json?address=Garibaldi,Prishtina&sensor=true",
dataType: 'json',
success: function (data) {
var loc = data.results[0].geometry.location;
alert(loc.lat);
alert(loc.lng);
}
});

关于jquery - getJSON 返回未定义,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/17127877/

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