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.

Given a string of JSON data, how can you safely turn that string into a JavaScript object?

Obviously you can do this unsafely with something like...

var obj = eval("(" + json + ')');

...but that leaves us vulnerable to the json string containing other code, which it seems very dangerous to simply eval.

share|improve this question
3  
In most languages eval carries an additional risk. Eval leaves an open door to be exploited by hackers. HOWEVER, remember that all javascript runs on the client. EXPECT that it will be changed by hackers. They can EVAL anything they want, just by using the console. You must build your protection on the server side. – Beachhouse Feb 7 at 17:34

9 Answers

up vote 50 down vote accepted

JSON.org has JSON parsers for many languages including 4 different ones for Javascript. I believe most people would consider json2.js their goto implementation.

share|improve this answer

If you're using jQuery just use:

jQuery.parseJSON( jsonString );

It's exactly what you're looking for

http://api.jquery.com/jQuery.parseJSON/

share|improve this answer
10  
version >= 1.4.1 required btw – Radek Jun 2 '11 at 10:17
11  
31kb added to your project also. – Dementic Jan 10 '12 at 12:03
13  
@Dementic - hence "If you're using jQuery" . If you are not using jQuery, then hopefully your alternative framework has similar functionality. – kgx Oct 19 '12 at 14:24
1  
as you seen in the question, no JQuery was mentioned. i did not -1 your answer, just pointed a fact. – Dementic Oct 19 '12 at 17:34
3  
No, that's not a fact; 31kb is not added to your project just by calling parseJson. If you're using jQuery you already have that extra weight. – mickylaaaad Jan 10 at 15:20
show 2 more comments

Why not just:

JSON.parse(jsonString);
share|improve this answer
5  
because it's not "safe". it's not supported in all browsers – vsync Oct 3 '11 at 13:01
17  
I'm pretty sure it's safe for Node.js – Stephen Oct 18 '11 at 17:07
It isn't supported in all browsers, but the script at the link below adds it to browsers that don't have it: github.com/douglascrockford/JSON-js/blob/master/json2.js – speedplane Jan 12 at 5:53

I'm not sure about other ways to do it but here's how you do it in Prototype (JSON tutorial).

new Ajax.Request('/some_url', {
  method:'get',
  requestHeaders: {Accept: 'application/json'},
  onSuccess: function(transport){
    var json = transport.responseText.evalJSON(true);
  }
});

Calling evalJSON() with true as the argument sanitizes the incoming string.

share|improve this answer

If you're using jQuery, you can also just do $.getJSON(url, function(data) { });

Then you can do things like data.key1.something, data.key1.something_else, etc.

share|improve this answer
you are using jQuery, aren't you ? – Alexandre C. Sep 2 '10 at 14:09

$.ajax({ url: url, dataType: 'json', data: data, success: callback });


The callback is passed the returned data, which will be a JavaScript object or array as defined by the JSON structure and parsed using the $.parseJSON() method.

share|improve this answer

I have successfully been using json_sans_eval for a while now. According to its author, it is more secure than json2.js.

share|improve this answer

This seems to be the issue:

An input is received, via ajax websocket etc, and it is always gonna be in String format - but you need to know if it is JSON.parsable. Touble is, that if you always run it through a JSON.parse, the program MAY continue 'successfully' but you'll still see an error thrown in the console with the dreaded "Error: unexpected token 'x'".

Here's what I tend to do (but its very kludgy):

var data = (data[0] === '{' || data[0 === '[']) ? JSON.parse(data) : data;

Any insight on a sure catch-all way without errors?

ps. this is kludgy, don't up-vote.

share|improve this answer

JS Guru Douglas Crockford has written a parseJSON function which you download here

share|improve this answer
5  
The code pointed to by this link has been superceded by json2.js mentioned above. – AllenJB May 6 '10 at 6:44

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.