我有一个看起来像这样的Json数组:
Test = [
{
"adj" : [
{
"nodeTo" : "x",
"nodeFrom" : "y",
"data":
{
"$type" : "line",
"$color" : "#A989BC",
"$value" : "number"
}
}
],
"id" : "id1",
"name" : "name1"
},
{
"adj" : [ ..... ] // I have many element in the Test array
我需要传递Test中的所有元素。 我这样做了:
list = [];
for (i = 0; i < Test.lenght; i++) {
if (x == Test[i]["name"])
list.push(x + "->" + Test[i]["adj"][0]["nodeTo"] + ":" + Test[i]["adj"][0]["data"]["$value"]);
}
但它不起作用。 在此先感谢:)
答案 0 :(得分:5)
可能只是一个(非常常见的)拼写错误:i < Test.length;