React pagination in componentDidMount()
问题 I'm working on a blog-like website and there is a page called PageDetail with the post and comments. I fetch the comments with redux and set the state. componentDidMount() { this.props.fetchComments(this.props.match.params.id) this.setCommentsForCurrentPage() } My state is shown as below to do the pagination. state = { currentPage: 0, offset: 0, slicedComments: [], } My slice function is as below. setCommentsForCurrentPage() { let slicedComments = this.props.comments .slice(this.state.offset,