RxJS mergeScan
在源 Observable 上应用累加器功能 累加器函数本身返回一个 Observable,然后每个中间 返回的 Observable 合并到输出 Observable 中。
mergeScan<T, R>(accumulator: (acc: R, value: T, index: number) => any, seed: R, concurrent: number = Number
.POSITIVE_INFINITY): OperatorFunction
<T, R>
参量
累加器 | 在每个源值上调用累加器函数。 |
---|---|
种子 | 初始累积值。 |
Simultaneously | 可选的。 默认值为 Number.POSITIVE_INFINITY 。 最大数量 输入并发预订的可观察对象。 |
returns
OperatorFunction<T, R>
:可观察到的累积值。
描述
就像 scan
,但是 Observables 返回了 由累加器合并到外部 Observable 中。
例
计算点击事件的数量
import { fromEvent, of } from 'rxjs';
import { mapTo, mergeScan } from 'rxjs/operators';
const click$ = fromEvent(document, 'click');
const one$ = click$.pipe(mapTo(1));
const seed = 0;
const count$ = one$.pipe(
mergeScan((acc, one) => of(acc + one), seed),
);
count$.subscribe(x => console.log(x));
// Results:
// 1
// 2
// 3
// 4
// ...and so on for each click