RXJS Wait for All Observables to Complete and Return Results
问题 I'm trying to create a RX stream that will execute a list of XHR calls async and then wait for them to complete before going to the next call. To help explain this could be written like this in normal JS: try { await* [ ...requests.map(r => angularHttpService.get(`/foo/bar/${r}`)) ]; } catch(e) { throw e } // do something This is the code I was trying but its running them individually and not waiting for them all to complete before proceeding. (This is a NGRX Effect stream so it is slightly