@angular/routerで@ngrx/effectsを使用しています。(Angular 2 バージョン RC4)
private router: Router
エフェクトに次の行を追加すると:
@Injectable()
export class RouterEffects {
constructor(
private updates$: StateUpdates<AppState>,
private router: Router // <- this line
) {}
}
次のエラーが表示されます。
例外: 循環依存をインスタンス化できません! (Token Application Initializer -> Token @ngrx/effects Bootstrap Effects -> Router -> ApplicationRef -> ApplicationRef_)
どうすればこれを解決できますか? ありがとう