我需要使用angularjs执行一些任务,根据JSON数组但是length属性不起作用。
var st = {
"user": [{
"child":[{
"label":"Batch Group 1"
},{
"label":"Batch Group 2"
}],
}]
};
console.log("lenght : "+st.user.child.length);
如何获得JSON数组的长度?
答案 0 :(得分:6)
user
是一个数组。以下应该有效。
console.log("lenght : "+st.user[0].child.length);