如何在JavaScript中迭代JSON数组?
问题描述:
我有以下类型的数组。我想在JavaScript中迭代这个数组。这怎么可能?
I have this below type of array. I want to iterate this array in JavaScript. How is this possible?
var dictionary = {
"data":[
{"id":"0","name":"ABC"},
{"id":"1","name":"DEF"}
],
"images": [
{"id":"0","name":"PQR"},
{"id":"1","name":"xyz"}
]
};
答
您可以使用以下代码执行此操作。首先使用dictionary.data获取数据数组并将其分配给数据变量。之后,您可以使用普通for循环迭代它。每一行都是数组中的一个行对象。
You can do it with the below code. You first get the data array using dictionary.data and assign it to the data variable. After that you can iterate it using a normal for loop. Each row will be a row object in the array.
var data = dictionary.data;
for(var i in data)
{
var id = data[i].id;
var name = data[i].name;
}
您可以按照类似的方法迭代图像数组。
You can follow similar approach to iterate the image array.