我正在尝试显示 Facebook 评论计数<div id="comments">
它必须通过 Facebook 查询语言 (FQL)。这篇文章几乎正是我所需要的: Facebook Graph Api url comments and share count doesn't work again
但是如何将comment_count
(来自查询的)显示为div
?即我如何处理这些数据?到目前为止,我有:
$(function(){
$.ajax({
url: 'https://graph.facebook.com/fql?q=SELECT%20comment_count%20FROM%20link_stat%20WHERE%20url=%27e',
dataType: 'jsonp',
success: function(data) {
if(data.comment_count)
{
$('body').find('#comments').html('Comments ('+jsonp.data.comment_count+')');
}else{
$('body').find('#comments').html('Comments (0)');
}
}
});
});