Angular 6订阅事件多次调用构造函数

时间:2018-11-19 05:14:05

标签: angular6 angular-routing ngrx ngrx-store angular-lifecycle-hooks

在构造函数的组件(子组件)中,添加简单事件

这是我的代码:

   this._modalService.onHidden.subscribe(
      result => {
        console.log("_modalService.onHidden");
        if(this.shown){
          this.shown = false;
          this._router.navigate(['.'], { relativeTo: this._route.parent });
        }
      }, error => console.log(error));

在第一次打开此页面时,此事件仅调用了一个 但是当再次进入页面时,此事件被调用了两次 而当输入3次时,此事件称为3次,等等。

[顺便说一句,如果我在ngOnInit事件上移动代码,也会发生这种情况 这也发生在另一个事件ngrx存储管道中,该事件多次调用 ]

这是我的路线(也许是原因)

const routes: Routes = [
  {
    path:':id' ,component:EventComponent,
    children:[
      {
      path:'o/:file'
      ,component:EventDetailComponent
    }]
  },
  {
    path:':id/:sub' ,component:EventComponent,
    children:[{
      path:'o/:file'
      ,component:EventDetailComponent
    }]
  }
];

enter image description here

1 个答案:

答案 0 :(得分:1)

您应该在OnDestroy中退订...

在构造函数中:

this.mySubscription = this._modalService.onHidden.subscribe(...);

onDestroy中:

this.mySubscription.unsubscribe();