我的页面上有帖子,评论部分我有一个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);
});
});