[{"ID":83,"post_author":"1","post_date":"2011-12-20 19:17:52","post_date_gmt":"2011-12-20 19:17:52","post_content":"This is my fiat project","post_title":"Fiat","post_excerpt":"","post_status":"publish","comment_status":"open","ping_status":"open","post_password":"","post_name":"fiat","to_ping":"","pinged":"","post_modified":"2011-12-20 19:17:52","post_modified_gmt":"2011-12-20 19:17:52","post_content_filtered":"","post_parent":0,"guid":"http:\/\/imiodrag.dyndns.org:8080\/other_media\/?p=83","menu_order":0,"post_type":"post","post_mime_type":"","comment_count":"0","filter":"raw"}]
$.get('http://foo.com/lol', function(data) {
var items = [];
$.each(data, function(key, val) {
$.each(val, function(key1, val1) {
items.push('<li id="' + key1 + '">' + val1 + '</li>');
});
});
$('.content').html(items.join(''));
});
我应该如何解析这个?
答案 0 :(得分:1)
答案 1 :(得分:0)
ECMAScript 5的原生是JSON.parse
。
或者你可以在这里实现它。 https://github.com/douglascrockford/JSON-js