嗨 Stackoverflow 团队!
我有这个效果,我在服务上使用带有角度 4.3 httpClient 的ngrx 4。问题是我看不到任何关于如何将它们一起使用的示例。我现在看到了,对于 httpclient,我们需要使用 subscribe() 方法,所以不清楚要返回什么,例如在以下代码中:
@Effect()
login$ = this.actions$
.ofType(Auth.LOGIN)
.map((action: Auth.Login) => action.payload)
.exhaustMap(auth =>
this.authService
.login(auth)
.map(user => new Auth.LoginSuccess({ user }))
.catch(error => of(new Auth.LoginFailure(error)))
);
所以,我需要理解这一行的逻辑:.login(auth) 非常感谢