0

我在这里找到了使用 ajax 添加评论的教程

得到它的工作,但注意到你需要刷新页面才能看到你旁边的其他人的评论,你如何检查如果有人添加评论,你会立即看到评论,而无需像 facebook 那样刷新页面。

在此处输入图像描述

此处示例某人张贴在墙上,然后当他添加评论时,您会立即看到更改而无需刷新页面。

4

1 回答 1

1

Javascript - setInterval.
在传递给的函数中setInterval,您检查后端是否有任何新评论。如果是这样,您会收到它们并动态添加到现有的评论块中。

更新:

$.ajax(your_url_to_script, {
    type: 'post',
    data: {
        last: last_comment_time, // or just last comment, or Id doesn't matter
    },
    success: function(data)
    {
        if ( '' != data.content.trim() )
        {
            // code, that will add new comments to comments block
        }
    }
});
于 2013-03-22T09:10:53.043 回答