不使用 combineLatest 怎么达到这个效果?
const id$ = of({
id: '123',
}).pipe(pluck('id'))
const source$ = of({
'123': 1,
'234': 2,
})
combineLatest(source$, id$, (hash, id) => {
return hash[id]
}).subscribe(console.log)