Есть ли способ заставить цикл forEach в Typescript ждать так, чтобы асинхронный код, такой как http-вызов, мог завершиться правильно.
Допустим, у меня есть три массива a [], b [] & c [] вУгловой компонент.Есть три функции, последние две зависят от завершения предыдущих функций.
loadA(){
this.http.get<a[]>(http://getA).subscribe(a=> this.a = a,
()=>loadB());
}
loadB(){
this.a.forEach((res, index)=>{
this.http.get<b[]>('http://getBbyA/res').subscribe(b=> this.b.push(...b),
()=> {
if(index===this.a.length-1){
loadC());
}
}
});
loadC(){
this.b.forEach(res=>{
this.http.get<c[]>('http://getCbyB/res').subscribe(c=> this.c.push(...c));
});
}
Теперь для второго метода цикл forEach делает непредсказуемым вызов функции loadC () после массива b []правильно загружен данными, полученными из http-вызова.Как заставить цикл forEach в loadB () ждать получения всех результатов http и затем вызывать loadC (), чтобы избежать непредсказуемости?
Обновление (с операторами RxJs):
В своем проекте я пробовал следующее:
loadData(): void {
this.http.post<Requirement[]>(`${this.authService.serverURI}/requirement/get/requirementsByDeal`, this.dealService.deal).pipe(
concatAll(), // flattens the array from the http response into Observables
concatMap(requirement => this.http.post<ProductSet[]>(`${this.authService.serverURI}/productSet/getProductSetsByRequirement`, requirement).pipe( // loads B for each value emitted by source observable. Source observable emits all elements from LoadA-result in this case
concatAll(), // flattens the array from the http response of loadB
concatMap(pSet => this.http.post<Product[]>(`${this.authService.serverURI}/product/get/productsByProductSet`, pSet).pipe( // foreach element of LoadB Response load c
map(product => ({requirement, pSet, product})) // return a object of type { a: LoadAResult, b: LoadBResult, c: LoadCResult}
))
)),
toArray()
).subscribe((results: { requirement: Requirement, productSet: ProductSet, product: Product }[] => {
results.forEach(result => {
this.requirements.push(...result.requirement);
this.productSets.push(...result.productSet);
this.products.push(...result.product);
});
}));
}
Но я все еще получаю некоторую ошибку (TS2345).Куда я иду не так?