如何从 JSONArray 中获取 JSONObject?
我有这样的 JSONArray:
[
{
"id0": 0,
"name0": "Test hd",
"customerType0": "Company",
"businessType0": "Buyer",
"city0": "Thirunelveli"
},
{
"id1": 1,
"name1": "Abcd abcdefghij",
"customerType1": "Company",
"businessType1": "Buyer",
"city1": "Varanasi"
},
{
"id2": 2,
"name2": "test ",
"customerType2": "Company",
"businessType2": "Buyer",
"city2": "Erode"
},
{
"id3": 3,
"name3": "New customer",
"customerType3": "Company",
"businessType3": "Buyer",
"city3": "Coimbatore"
}
]
而且我想分别获取每个对象,并使该数据以 AS Html 表的格式显示。
我试过了:
function table_ajax()
{
$.ajax({
type: "GET",
url: "Customergrouptable_servlet",
data: "searchname="+$('.cnames').val(),
success: function(data)
{
tableobj = JSON.parse(data)
cusobj=tableobj.customerdetail;
$(cusobj).each(function(index, cusobj){
alert("index"+index);// Here i can get the index for that object. I dont know how to get the object values has stored.
});
}
});
}