Я использую MobX 2.2.2, чтобы попытаться изменить состояние внутри асинхронного действия. У меня MobX useStrict установлен в true.
@action someAsyncFunction(args) {
fetch(`http://localhost:8080/some_url`, {
method: 'POST',
body: {
args
}
})
.then(res => res.json())
.then(json => this.someStateProperty = json)
.catch(error => {
throw new Error(error)
});
}
Я получаю:
Error: Error: [mobx] Invariant failed: It is not allowed to create or change state outside an `action` when MobX is in strict mode. Wrap the current method in `action` if this state change is intended
Нужно ли мне снабжать декоратор @action ко второму оператору? Любая помощь будет оценена.