我正在使用ngrx / router。在这种情况下,我想“摘取”一个名为externalId
的路由参数,每当externalId
发生变化时,我想将用户发送到另一条路线。
但是,每当我将它们发送到另一条路线时,即使我在新路线中没有subscribe
,也会再次执行externalId
阻止。
任何想法为什么?
// Currently we are in the route: /contacts/:externalId
this.externalId$ = this.routeParams$.pluck<string>('externalId');
this.externalId$
.subscribe(id => {
console.log(id); // this is printed twice, undefined the second time
this.router.go('/start-page'); // this makes routeparams emit undefined
});