RxJS 操作符笔记汇总
记录 RxJS 操作符(operators)使用方法,因为操作符太多了所以看到哪就写到哪。
map
,filter
,every
,find
,findIndex
,reduce
这几个用法与数组方法用法基本一致的操作符只保留map
,剩下几个操作符就略过了。
- 创建操作符(Creation Operators)
- 联结创建操作符(Join Creation Operators)
- 转换操作符(Transformation Operators)
- 实用工具操作符 (Utility Operators)
- 过滤操作符(Filtering Operators)
- 数学和聚合操作符(Mathematical and Aggregate Operators)
评论