Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我很难看到 RxJs 中 switchLatest 和 flatmapLatest 之间的区别,区别在于一个嵌套的 observable 像在 scala 中一样扁平化,而另一个相当于在返回新的扁平化集合之前执行它?
我是不是错过了什么。
.flatMapLatest(func)等价于.map(func).switchLatest(),其中func输出一个 observable。
.flatMapLatest(func)
.map(func).switchLatest()
func