i have the following JSON response, but i am not sure how to properly loop trough it and use.
{
"ID": 1,
"Name": "dept1",
"Categories": [
{
"ID": 1,
"Name": "catg1"
},
{
"ID": 2,
"Name": "catg2"
}
]
}
following code alerts me the departmentID which is 1, then its name 'dept1', then this: '[object Object],[object Object]'
$.getJSON("mainPage2.aspx", function(result) {
$.each(result, function(i, item) {
alert(this);
});
});
all i want to do is to create a div using department info, and create another div inside it which includes the information of categories that belong to that deparment.
See Question&Answers more detail:
os 与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…