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.

How can i iterate my json string return from a Java file in JavaScript ?

My JSON string having the following hierarchy;

ResponseObject -> SId -> SeId -> QId-> List of data. I need to access that list of data by looping through it using JavaScript.

share|improve this question
1  
has nothing to do with Java, removed the tag – Nishant Mar 8 '11 at 11:23

3 Answers

up vote 0 down vote accepted

You can use jQuery to parse JSON String or alternatively, you can create a JSON Object using the javascript eval() function.

Once you have a JSON object created, you can use dot notation to traverse your json, like

var value = ResponseObject.SId.SeId.Qid;

Where the attributes from the dot notation are your JSON key in the json string.

share|improve this answer
im havin a list of values in Qid . how can i loop thru that – user630209 Mar 8 '11 at 12:10
If it's an array, then iterate it like you usually do with an array in javascript. Remember, the object can be manipulated the same way like you do in javascript, nothing changes. – Buhake Sindi Mar 8 '11 at 12:23
thank u , it worked – user630209 Mar 8 '11 at 13:16
Glad to have been of help. – Buhake Sindi Mar 8 '11 at 22:07

Use this notation: myobjet["MyAttributeName"].

for( var SId in ResponseObject ) {

    for(var SeId in ResponseObject[SId] ) {

        for(var QId in ResponseObject[SId][SeId] ) {
            var value = ResponseObject[SId][SeId][QId];
        }

    }

}

I didn't test it, but it should work.

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.