0

我们有一个组件元素到另一个组件的 Jumpto 操作。在这种情况下,ChangeDetectorRef[destroyed]总是正确的,因为它我无法强制ChangeDetectorRef.detectChanges()运行

home.component

function(){
  this.router.navigate(['/dashboardComponent']);
 //BehaviorSubject
 this.behSubject.subscribe();
}

仪表板.组件

 ngOninIt(){
    //BehaviorSubject
    this.behSubject.subscribe(
      //function call 
       this.setValues()
     )
 }

  setValues(){
    ChangeDetectorRef[destroyed] // Always true.
  }

它是否携带home.component被破坏的实例dashboard.component?如何克服这个?

4

0 回答 0