次のコードを使用 (ngrx/store の @Effect() から取得)
.switchMap(({token, param1, param2}) => {
return Observable.combineLatest(
this.service.getData2(token, param1),
this.service.getData2(token, param2),
this.service.getData3(token),
);
})
エラーをキャッチするための最も簡潔で正しいパターンは何でしょうか? .catch はすべてのgetData*
呼び出しに従う必要がありますか? .catch()
メイン@Effect()
チェーンの最後にはしたくないですよね?
質問はthis oneに似ていますが、.subscribe()
ここで電話しないという点で少し異なります。