演算子tap
とmap
内部オブザーバブルが呼び出されないのはなぜですか? combineLatest
に入るオブザーバブルをサブスクライブする必要がありobsArr
ますよね?このサブスクリプションがこれらのオペレーターをトリガーしないのはなぜですか?
const obsArr = [];
[[1, 2], [3, 4], [5, 6]].map(arr => {
const observable = from(arr);
observable.pipe(
tap(item => {
// this is NOT called
console.log('tap', item)
}),
map(item => {
// this is NOT called
return item * -1;
})
);
obsArr.push(observable);
});
combineLatest(obsArr).subscribe(latestValues => {
console.log(latestValues);
// LOG: [2, 4, 5]
// LOG: [2, 4, 6]
});
ワーキングスタックブリッツ: https://rxjs-y2h4rn.stackblitz.io
説明ありがとう!