RxJsv6を使用して2019年5月に更新
他の回答が有用であることがわかり、zip
使用法についてArnaudが提供した回答の例を提供したいと考えました。
これは、Promise.all
とrxjsの間の同等性を示すスニペットですzip
(rxjs6では、演算子としてではなく「rxjs」を使用してzipがインポートされる方法にも注意してください)。
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!' ]