1

返される JSON 形式から緯度と経度を取得したいのですが、undefined が返されます

これはこれまでの私のコードです。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;
                }
            });
        });
    }
});

誰でもこれを解決する方法を知っていますか?

4

2 に答える 2

3

なぜ...

$.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);
        }
    });
于 2013-06-15T21:12:38.863 に答える
2

value.geometry...の代わりに使用する必要がありvalue[0]ます。インデックスは$.eachループ内では使用されません。

于 2013-06-15T21:18:17.143 に答える