Обновление мая 2019 с использованием RxJs v6
Считал другие ответы полезными и хотел предложить пример ответа, предложенного Арно об zip
использовании.
Вот фрагмент, показывающий эквивалентность между Promise.all
rxjs и rxjs zip
(обратите внимание также, что в rxjs6 zip теперь импортируется с использованием rxjs, а не как оператора).
import { zip } from "rxjs";
const the_weather = new Promise(resolve => {
setTimeout(() => {
resolve({ temp: 29, conditions: "Sunny with Clouds" });
}, 2000);
});
const the_tweets = new Promise(resolve => {
setTimeout(() => {
resolve(["I like cake", "BBQ is good too!"]);
}, 500);
});
let source$ = zip(the_weather, the_tweets);
source$.subscribe(([weatherInfo, tweetInfo]) =>
console.log(weatherInfo, tweetInfo)
);
Promise.all([the_weather, the_tweets]).then(responses => {
const [weatherInfo, tweetInfo] = responses;
console.log(weatherInfo, tweetInfo);
});
Результат обоих одинаков. Выполнение вышеуказанного дает:
{ temp: 29, conditions: 'Sunny with Clouds' } [ 'I like cake', 'BBQ is good too!' ]
{ temp: 29, conditions: 'Sunny with Clouds' } [ 'I like cake', 'BBQ is good too!' ]