Angular4 how to chain forkJoin with flatMap
问题 I'm in the situation where I need to make 5 http calls that can be executed in parallel + another http call that need to be executed after these five. I used forkJoin for the first 5, but I don't have any idea how to chain flatMap (or other function). forkJoin( firstObservable, secondObservable, thirdObservable, ..) .subscribe(results => { this.myComposedObject = results[0]; let secondResult = results[1]; let thirdResult = results[2]; [...] // !!! AT THIS POINT I WOULD NEED TO MAKE AN EXTRA