Welcome to OStack Knowledge Sharing Community for programmer and developer-Open, Learning and Share
Welcome To Ask or Share your Answers For Others

Categories

0 votes
158 views
in Technique[技术] by (71.8m points)

javascript - How to parse JSON easily?

I have some JSON encoded strings and I need to easily parse them. Any ideas how to do this? I am a noob in javaScript and I can't do it myself. I read that parsing json is really hard.

Please help!

See Question&Answers more detail:os

与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…
Welcome To Ask or Share your Answers For Others

1 Answer

0 votes
by (71.8m points)

JSON is valid Javascript, so you can eval() it:

var data = eval(json);

However it's safer to use JSON.parse()[docs], when this function is available:

var data = JSON.parse(json);

So you could do something like this:

if (window.JSON) {
    data = JSON.parse(json);
} else {
    data = eval('('+json+')');
}

Note the use of parenthesis in eval(). See @CMS's comment and this.

You could also use an existing library, like this one (adds JSON.parse on browsers that do not have it).

If you are using jQuery, use $.parseJSON()[docs].


与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…
Welcome to OStack Knowledge Sharing Community for programmer and developer-Open, Learning and Share
Click Here to Ask a Question

...