button_next() {
if (this.state.loaded) {
if (this.state.offset <= this.state.count) {
this.setState(prevState => ({
offset: prevState.offset + this.state.limit
}))
}
}
};
в componentDidMount добавил this.props.endpoint + '?limit=' + this.state.limit + '&offset=' + this.state.offset, но как сделать кнопку не понятно))
this.componentDidMount(); уже говорит нам о том что тут все очень плохо
Обсуждают сегодня