Я пытаюсь установить состояние в componentWillMount после вызова отправки.Ошибка выдачи: TypeError: Cannot read property '_currentElement' of null
Работа на одной из моих страниц, но ошибка выдачи на этой.
constructor(props) {
super(props);
this.state={
historyList: []
}
}
componentWillMount() {
return this.context.store.dispatch(getHistory())
.then(response => {
let history = response;
this.setState({
historyList : history
});
})
.catch(err => console.log(err));
}
Когда я смотрю на ответ, он содержит правильные данные, но выдает ошибку в
this.setState({ historyList : history });
Что я делаю не так?