Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

I'm working with some Json that is similar to:

{ 
   "Apps" : [
   { 
     "Name" : "app1",
     "id" : "1",
     "groups" : [ 
       { "id" : "1", "name" : "test group 1", "desc" : "this is a test group" },
       { "id" : "2", "name" : "test group 2", "desc" : "this is another test group" } 
     ]
   }
   ]
}

If I parse it in jquery to return an object and I'm iterating through the apps like so:

$.each(myJsonObject.Apps, function() { ... };

How can I get the length of this.groups ?

I've tried

  • this.groups.length
  • this.groups.length()
  • $(this).groups.length()

and I cannot find any decent documentation on multiple tier json objects that have good information.

Any links or examples or suggestions would be appreciated.

share|improve this question
2  
Isn't that just a typo? groups in the JSON is all lowercase, but your code samples have Groups. – Dominic Barnes Apr 7 '11 at 19:56
even in the correct case it does not work. ill update my example – Patrick Apr 7 '11 at 19:58
Are you sure? It works fine when I just try it out in the console. – Dominic Barnes Apr 7 '11 at 20:01
try $(var.Apps[0].groups).length – Ankur Loriya May 1 '12 at 9:19

4 Answers

up vote 10 down vote accepted

Try:

$.each(myJsonObject.Apps, function(i, obj) { ... });

obj.Groups.length;
share|improve this answer
odd it doesnt work when i reference this... but if I reference myJsonObject it works. ill accept once the limit expires >< – Patrick Apr 7 '11 at 20:04

Javascript is case sensitive. Change this.Groups.length to this.groups.length.

This code should work:

$.each(myJsonObject.Apps, function() { 
   alert(this.groups.length);
}); 

I have a working example on JSFiddle

To avoid this sort of problem, you should use a consistent capitalization. In Javascript, it is conventional to use camelCase.

share|improve this answer

Looks like you just have a simple typo in your code. JavaScript is case-sensitive, so groups is not the same as Groups.

If your JSON object has groups in all lowercase, like your example, then you only need to use this.groups.length inside the iteration function.

share|improve this answer

this works well:

HTML:

<span id="result"></span>

JS:

var myJsonObject = 
{ 
   "Apps" : [
   { 
     "Name" : "app1",
     "id" : "1",
     "groups" : [ 
       { "id" : "1", "name" : "test group 1", "desc" : "this is a test group" },
       { "id" : "2", "name" : "test group 2", "desc" : "this is another test group" } 
     ]
   }
   ]
};

$.each(myJsonObject.Apps, function(i, el) { 
    $("#result").html(el.groups.length);
});

example

share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.