如何把ajax读取的json字段转化为普通数组

var data = {
"records": [
    {
      "Name" : "Alfreds Futterkiste",
      "City" : "Berlin",
      "Country" : "Germany"
    },

    {
       "Name" : "Berglunds snabbköp",
       "City" : "Luleå",
       "Country" : "Sweden"
    },

    {
       "Name" : "Centro comercial Moctezuma",
       "City" : "Mébaixico D.F.",
       "Country" : "Mexico"
    }
]};

var nameList = [];
for(var i = 0 ; i < data.records.length; i++ ){
  nameList[nameList.length] = data.records[i].Name;
}
// nameList 就是你想du要的zhi东西dao

 

你可能感兴趣的:(如何把ajax读取的json字段转化为普通数组)