私が達成しようとしているのは、アプリの初期化ごとに 1 回だけ外部 API を呼び出すことです。
簡単なサービスがありますが、
@Injectable()
export class XService {
url = "http://api.example.com"
constructor(private _http:Http) {
}
callAnAPI(){
console.log('made an external request");
return this._http.get(url)
.map(res=>res.json());
}
}
そして2つのコンポーネント、メインappComponent
@Component({
selector: 'my-app',
template: `
<div>
Test
</div>
`
})
export class AppComponent {
isLoading = true;
results = [];
constructor(private _service: XService){
}
ngOnInit(){
Observable.forkJoin(
this._service.callAnAPI()
// some more services here
)
.subscribe(
res => {
this.results = res[0];
},
null,
() => {this.isLoading = false}
);
}
}
およびルートで使用される別のコンポーネント
@Component({
template: `
<div>
I want to use the service with this component.
</div>
`
})
export class SecondComponent {
constructor(private _service: XService){
}
}
サービスが初期化され、Angular は の初期化時にサーバーにヒットしますAppComponent
。からサービスを再度呼び出そうとするたびにXService
、( 経由で) Angular が外部 API にヒットします。外部からのヒットを最小限に抑えたい。SecondComponent
SecondComponent
_service._service.callAnAPI()
AppComponent
でサービスを再度呼び出すよりも、初期化で作成されたデータを取得するにはどうすればよいですかSecondComponent