-2

我正在使用 javascript api 来获取 facebook 评论。

我得到以下 json 结果,但如何解析它们以在我的页面上使用?

  {
      "id": "1234567891_2823098717038_3160191",
      "from": {
        "name": "User",
        "id": "1234567891"
      },
      "message": "comment only...",
      "can_remove": true,
      "created_time": "2012-05-05T07:43:11+0000"
    },
    {
      "id": "1234567891_2823098717038_3160281",
      "from": {
        "name": "User",
        "id": "1234567891"
      },
      "message": "just another comment...",
      "can_remove": true,
      "created_time": "2012-05-05T08:14:17+0000"
    },
    {
      "id": "1234567891_2823098717038_3160336",
      "from": {
        "name": "user2",
        "id": "56265654845454"
      },
      "message": "congratz dear :)",
      "can_remove": true,
      "created_time": "2012-05-05T08:29:05+0000"
    }
  ],
  "paging": {
    "next": "http://link.dddd"
  }
}

我如何循环并显示内容?

jQuery 解决方案是可以接受的。

谢谢你。

4

2 回答 2

1

使用JQuery.parseJSONhttp ://api.jquery.com/jQuery.parseJSON/

于 2012-05-05T08:51:35.507 回答
0

assoc_data = jQuery.param(响应); //响应是你的json

$.ajax({ type: "POST", url: "submit_fb_data.php", data: assoc_data, success: function(data) {

//etc

}

});

  • 确保使用 >=1.4 的 jquery 版本
于 2012-05-06T21:04:30.800 回答