问个关于 RxJS 的问题

2020-08-07 12:31:23 +08:00
 CraxClive

不使用 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)
    
1022 次点击
所在节点    问与答
1 条回复
Zhuzhuchenyan
2020-08-07 19:46:15 +08:00
换汤不换药的推荐 withlatestfrom, 不过这个操作符分主次,根据你要的逻辑写就好了

这是一个专为移动设备优化的页面(即为了让你能够在 Google 搜索结果里秒开这个页面),如果你希望参与 V2EX 社区的讨论,你可以继续到 V2EX 上打开本讨论主题的完整版本。

https://www.v2ex.com/t/696423

V2EX 是创意工作者们的社区,是一个分享自己正在做的有趣事物、交流想法,可以遇见新朋友甚至新机会的地方。

V2EX is a community of developers, designers and creative people.

© 2021 V2EX