Zaktualizuj maj 2019 przy użyciu RxJs v6
Inne odpowiedzi okazały się przydatne i chciałem podać przykład odpowiedzi udzielonej przez Arnaud na temat zip
użycia.
Oto fragment pokazujący równoważność między Promise.all
rxjs a rxjs zip
(zwróć także uwagę, w rxjs6, w jaki sposób zip jest teraz importowany przy użyciu "rxjs", a nie jako operatora).
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);
});
Dane wyjściowe z obu są takie same. Uruchomienie powyższego daje:
{ 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!' ]