Оновіть травень 2019 року, використовуючи RxJs v6
Інші відповіді знайшли корисними та хотіли запропонувати приклад відповіді Арно про zip
використання.
Ось фрагмент, що показує еквівалентність між Promise.all
і 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!' ]