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.
根据event-stream中的文档,这两种方法的区别似乎是同步或异步。但我仍然不确定差异的真正含义。
好吧,区别基本上是完全不同的:
虽然through流只重新发出,但map流也能够修改数据。第一个简单地发出它得到的东西,数据以 1:1 的比例发送给订阅者。最后一个有一个额外的转换步骤,所以数据可能是 1:1,但不需要。
through
map
换句话说,through流是一种身份,而流是map一种mapping。
mapping