ReactJS为Facebook帖子等评论系统结构

时间:2015-06-06 09:34:37

标签: reactjs

我的页面上有帖子,评论部分我有一个ReactJS< CommentSection />零件。最初将加载10个帖子;我知道如何为这些帖子呈现CommentSection。当从服务器再次加载帖子时,如何附加CommentSection组件?

我不知道最佳做法。想想facebook帖子:当你向下滚动时,帖子会被动态锁定。

var CommentForm = React.createClass({
render: function() {
    return <div>{this.props.content}</div>;
}
});

$(document).ready(function() {
    jQuery.each( $('.post .commentForm'), function(key, elem) {
        console.log(elem)
        React.render(<CommentForm content="Bla" />, elem);
    });
});

DEMO:https://jsfiddle.net/69z2wepo/8907/

0 个答案:

没有答案