codecamp

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
RxJS mergeMapTo
RxJS min
温馨提示
下载编程狮App,免费阅读超1000+编程语言教程
取消
确定
目录

RxJS operators

RxJS fetch

RxJS testing

关闭

MIP.setData({ 'pageTheme' : getCookie('pageTheme') || {'day':true, 'night':false}, 'pageFontSize' : getCookie('pageFontSize') || 20 }); MIP.watch('pageTheme', function(newValue){ setCookie('pageTheme', JSON.stringify(newValue)) }); MIP.watch('pageFontSize', function(newValue){ setCookie('pageFontSize', newValue) }); function setCookie(name, value){ var days = 1; var exp = new Date(); exp.setTime(exp.getTime() + days*24*60*60*1000); document.cookie = name + '=' + value + ';expires=' + exp.toUTCString(); } function getCookie(name){ var reg = new RegExp('(^| )' + name + '=([^;]*)(;|$)'); return document.cookie.match(reg) ? JSON.parse(document.cookie.match(reg)[2]) : null; }