读取数组长度

时间:2015-04-20 12:35:30

标签: javascript arrays

我需要使用angularjs执行一些任务,根据JSON数组但是length属性不起作用。

var st = {
  "user": [{    
    "child":[{
      "label":"Batch Group 1"
    },{
      "label":"Batch Group 2"
    }],
  }]
};

console.log("lenght : "+st.user.child.length);

如何获得JSON数组的长度?

1 个答案:

答案 0 :(得分:6)

user是一个数组。以下应该有效。

console.log("lenght : "+st.user[0].child.length);