4

我在我的 Angular2 应用程序中使用 ngrx/effects,自从 RC5 发布以来,我遇到了错误。这是我的代码:

import { Injectable } from '@angular/core';
import { Effect, Actions } from '@ngrx/effects';
import { UserActions } from './user.actions';
import { LoginService } from '../login';

constructor(
  private updates$: Actions,
  private userActions: UserActions,
  private loginService: LoginService
) {}

@Effect() loadUser$ = this.updates$
  .ofType(UserActions.LOAD)
  .switchMap(() => this.loginService.loadUserData())
  .map(user => this.userActions.loadUserComplete(user.userData));

上面的代码在带有ngrx/effects 1.1.1的Angular2 RC4中运行良好。

但是当我将 Angular 升级到 RC5 时,我得到了错误:Unhandled Promise rejection: this.updates$.ofType(...).switchMap is not a function

然后我将ngrx/effects升级到最新版本2.0.0-beta.2(根据文档应该为新的RC5 NgModule定制)但得到了与上面完全相同的错误。是的,我在这一步中将whenAction()功能更改为。ofType()

有任何想法吗?

4

2 回答 2

11

您不会自动将所有 RxJS 运算符导入 Angular 2 项目中。您是否尝试switchMap手动导入运算符?

import 'rxjs/add/operator/switchMap';

这必须存在于您的代码中的某个位置,可能它是由第三方库导入的,在此之前不再导入操作符。

于 2016-08-16T10:51:39.417 回答
0

使用import {switchMap} from 'rxjs/operators' 对我有用!这是使用版本 6.4.0

于 2019-02-21T21:12:55.530 回答