0
如何獲得評論ID的評論文字基礎?我如何獲得評論文字基於評論ID?
我使用的是Facebook js api,當評論創建時,我想用ajax在我的數據庫中插入評論內容,但是下面的代碼沒有返回任何文本內容,我如何獲取內容?
在ajax中,我將基於commentID獲取內容,如何在FQL中獲取內容?
<script type="text/javascript">
FB.Event.subscribe(
'comment.create',
function(href,commentID){
// can only get commentID
// I need to get comment content, how to do ?
$.ajax({
url:'jy_ajax.php',
type:'POST',
data:{
commentID:commentID
},
success:function(){}
});
}
</script>
您是否嘗試過記錄'href'來查看它包含的內容。據我記得第一個參數通常是'response',包含評論本身,而不是href? – adeneo
href只是你評論過的網址,沒有評論文字 –