1

我有来自谷歌 api 的这个 json:

{
   "results" : [
      {

         "formatted_address" : "1 Broadway, New York, NY 10021, USA",
      }
   ],
   "status" : "OK"
}

如何获取“formatted_address”的值?

使用此代码(使用 jquery)我只得到“结果是数组”

$.getJSON(jsonFile, function(data){

    $.each(data, function(key, val){
        alert(key + ' is ' + val);
    });

});

在 php 中这很容易,但我需要它是客户端

4

1 回答 1

1
$.getJSON(jsonFile, function(data) {
    $.each(data.results, function(key, val) {
        alert(key + ' is ' + val);
    });
});

这应该有效。

于 2013-09-16T17:57:05.297 回答