Я хочу вызвать функцию внутри store.subscribe
и всегда получаю сообщение об ошибке: undefined this
,
Это код, который я пробовал:
componentDidMount() {
this.GetFilteredData();
}
GetFilteredData = () => {
WithHoldTaxApi.GetFilteredData()
.then((collection) => {
console.log("data", collection)
this.setState({ collection: collection })
}
).catch(error => {
throw error;
})
}
store.subscribe(() => {
console.log(store.getState())
this.GetFilteredData();
})