这是我这里的 json 格式的费用 url
我想知道如何使用 jquery getJSON 方法获取帖子内容、标题、喜欢、评论。任何帮助将被appricated?
查询代码
$("document").ready(function() {
$.getJSON("https://www.facebook.com/feeds/page.php?id=397319800348866&format=json", function(data) {
$("#div-my-table").text("<table>");
$.each(data, function(i, item) {
$("#div-my-table").append("<tr><td>" + item.EncoderName + "</td><td>" + item.EncoderStatus + "</td></tr>");
});
$("#div-my-table").append("</table>");
});
});
代码
<table id="div-my-table">
<tr><td></td></tr>
<tr><td></td></tr>
<tr><td></td></tr>
</table>