文章来源于网络收集而来,版权归原创者所有,如有侵权请及时联系!
reduce
reduce
函数签名: reduce(accumulator: function, seed: any): Observable
将源 observalbe 的值归并为单个值,当源 observable 完成时将这个值发出。
如果每次发送时都需要当前的累加值,请使用 scan!
示例
示例 1: 数字流的加和
( StackBlitz | jsBin | jsFiddle )
// RxJS v6+
import { of } from 'rxjs';
import { reduce } from 'rxjs/operators';
const source = of(1, 2, 3, 4);
const example = source.pipe(reduce((acc, val) => acc + val));
// 输出: Sum: 10'
const subscribe = example.subscribe(val => console.log('Sum:', val));
其他资源
- reduce :newspaper: - 官方文档
- scan() vs reduce() | RxJS 教程 :video_camera: - Academind
源码: https://github.com/ReactiveX/rxjs/blob/master/src/internal/operators/reduce.ts
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论