如果语句没有在json数组上进行编译

时间:2012-09-21 13:21:23

标签: javascript json

我有一个看起来像这样的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"]);
 }

但它不起作用。 在此先感谢:)

1 个答案:

答案 0 :(得分:5)

可能只是一个(非常常见的)拼写错误:i < Test.length;