コンポーネントがあるComponentA that 要素のリストを表示する。このリストは、ngOnInit
の間に初期化されます。
別のコンポーネントがありますComponentB ComponentAに表示される要素のリストに影響を与える可能性のあるコントロールを提供します。例えば。要素を追加できます。
ComponentAの再起動をトリガーするの方法が必要です
誰かがアイデアを持っていますか?
詳細
[〜#〜] a [〜#〜]は、「savedSearchs」のリストを表示するメニューを備えたHeaderBarです。
@Component({
selector: 'header-bar',
templateUrl: 'app/headerBar/headerBar.html'
})
export class HeaderBarComponent implements OnInit{
...
ngOnInit() {
// init list of savedSearches
...
}
}
[〜#〜] b [〜#〜]は、検索を保存する可能性のあるSearchComponentです
@Component({
selector: 'search',
templateUrl: 'app/search/search.html'
})
export class SearchComponent implements OnInit {
...
}
コンポーネントを提供し、他のコンポーネントのngOnInitを呼び出す必要があるコンポーネントのコンストラクター内に注入する必要があります。
Plunker Demo: https://plnkr.co/edit/M0d65wHjfg4KfwaQ5mPM?p=preview
//our root app component
import {Component, NgModule, VERSION, OnInit} from '@angular/core'
import {BrowserModule} from '@angular/platform-browser'
@Component({
selector: 'my-app',
template: `
<div>
<h2>Hello {{name}}</h2>
<comp-one></comp-one>
<comp-two></comp-two>
</div>
`,
})
export class App {
name:string;
constructor( ) {
this.name = `Angular! v${VERSION.full}`
}
}
// ComponentOne with ngOnInit
@Component({
selector: 'comp-one',
template: `<h2>ComponentOne</h2>`,
})
export class ComponentOne implements OnInit {
ngOnInit(): void {
alert("ComponentOne ngOnInit Called")
}
}
// Added provider of ComponentOne here and injected inside constructor the on button click call ngOnInit of ComponentOne from this component
@Component({
providers:[ComponentOne],
selector: 'comp-two',
template: ` Component Two: <button (click)="callMe()">Call Init of ComponentOne</button>`,
})
export class ComponentTwo implements OnInit {
constructor(private comp: ComponentOne ) {
this.name = `Angular! v${VERSION.full}`
}
public callMe(compName: any): void {
this.comp.ngOnInit();
}
}
@NgModule({
imports: [ BrowserModule ],
declarations: [ App, ComponentOne, ComponentTwo ],
bootstrap: [ App ]
})
export class AppModule {}