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 have this json response and i want to get the "term" of the "FirstTranslation" and "SecondTranslation" and "ThirdTranslation" and put them into variables in javascript, and if i want to get later l "POS"... how can i do it?

{

"term0" : {

"PrincipalTranslations" : {

"0" :{
    "OriginalTerm" : { "term" : "classic", "POS" : "adj", "sense" : "standard, conventional", "usage" : ""}, 
    "FirstTranslation" : {"term" : "classique", "POS" : "adj", "sense" : ""}, 
    "SecondTranslation" : {"term" : "standard", "POS" : "adj", "sense" : ""}, 
    "ThirdTranslation" : {"term" : "conventionnel, conventionnelle", "POS" : "adj", "sense" : ""}, "Note" : ""},

"1" :{
    "OriginalTerm" : { "term" : "classic", "POS" : "n", "sense" : "book, etc: respected work", "usage" : ""}, 
    "FirstTranslation" : {"term" : "classique", "POS" : "nm", "sense" : ""}, "Note" : ""},
share|improve this question
5  
What have you tried? – Dancrumb Dec 18 '12 at 17:17
data = JSON.parse(jsonString); data.term0.PrincipalTranslations["0"].OriginalTerm.term – Shmiddty Dec 18 '12 at 17:18

1 Answer

up vote 1 down vote accepted

Most modern browsers, including Chrome, Firefox and Safari have a built-ni JSON parser:

var object = JSON.parse(jsonResponse);
var translation = object["term0"]["PrincipalTranslations"]["0"]["OriginalTerm"]["term"];

(for example)

See http://caniuse.com/#feat=json for support info

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.