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.

the output of the code below is this:

[{"user_name":"Maria","user_surname":"Dominguez"},{"user_name":"Celia","user_surname":"Paris"}]
95

I expected the length be 2. Any explanation?

$.get(
    "http://myfirm.local/school/view-more-users",
    {"type": user_type, "school_id": school_id, "offset": offset},
    function(data){
        console.log(data);
        console.log(data.length);
        ,  
    "json"
);

Javier

share|improve this question
using $.each to deal with it, you don't need to know how many elements I think. – Tom Jun 18 '12 at 10:55

3 Answers

data= JSON.parse(data);
console.log(data.length);

OR

data= $.parseJSON(data);
console.log(data.length);
share|improve this answer

The console.log will output you 95 because it interprets your data object as a string which in fact has exactly 95 characters.

share|improve this answer

because you are looking at the length of string. Try parsing it in JSoN object and see the length

$.parseJSON(data)
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.