Angular 2 Observable.forkJoin with for循环

时间:2017-08-01 13:16:05

标签: angular rest typescript

这就是我现在的工作方式:

getTwoObjectById(url1: string, id1: string, url2: string, id2): any{
  return Observable.forkJoin(
    this.http.get(url1 + `/${id1}`, this.jsonWebToken()).map(res => 
      res.json()),
    this.http.get(url2 + `/${id2}`, this.jsonWebToken()).map(res => 
      res.json())
  );
}

我想用id1,url1,id2,url2,id3,url3来阻止这种功能......

我正在尝试编写一个函数,该函数应该将一个ID数组和一个URL数组作为参数。使用Observable.forkJoin for循环应该将每个请求getById执行到Array中的Backend-URL。 我的问题是for for循环

getObjectsById(ids: Array<string>, urls: Array<string>): Observable<any>{
  return Observable.forkJoin(

  for(let i = 0; i++; i<ids.length) {

     this.http.get(urls[i] + `/${ids[i]}`, this.jsonWebToken()).map(res => res.json());

  }

 )
}  

我该怎么做?

1 个答案:

答案 0 :(得分:1)

尝试使用此

inputObject = [1, 2, 3, 4];


getObjectsById() {
    let observableBatch = [];

    this.inputObject.forEach((key) => {
      observableBatch.push(this.http.get(url+key).map((res) => res.json()));
    });

    return Observable.forkJoin(observableBatch);
  }