如何使用jquery解析这个json答案

How to parse this json answer using jquery

本文关键字:json 答案 何使用 jquery      更新时间:2023-09-26
[{"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(''));
});

我该如何解析这个?

使用jQuery.parseJSON

原生的ECMAScript 5是JSON.parse

或者您可以在这里实现它。https://github.com/douglascrockford/JSON-js