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
2 番目の .then ステートメントに @action デコレータを指定する必要がありますか? どんな助けでも大歓迎です。