あるコンポーネントで HTTP GET を介してデータをロードしようとしていますが、動的にロードされた子コンポーネントでこのデータを使用する必要があります。
コードは次のとおりです。
ngOnInit(){
this.accountService.getPersonalInfo().subscribe(
response => {
this.Account = response.json();
this.dcl.loadIntoLocation(HeaderComponent, this.elementRef, 'header')
.then(compRef => {
compRef.instance.Account=this.Account;
}
);
}
);
}
子コンポーネント (HeaderComponent) ではthis.Account
、このデータを取得するために使用できます。これを行うより良い方法はありますか?