codecamp

RxJS filter

通过仅发出满足指定谓词的项来过滤由源发出的项。

filter<T>(predicate: (value: T, index: number) => boolean, thisArg?: any): MonoTypeOperatorFunction<T>

参量

谓词 评估源 Observable 发出的每个值的函数。如果返回true,则发送该值,如果false该值未传递到输出 Observable。该index参数是i从订阅以来发生的第i个源发射的编号 0
thisArg 可选的。默认值为undefined。一个可选的参数来确定的值this 的predicate功能。

returns

MonoTypeOperatorFunction<T>:该predicate函数允许的来自源的可观察值。

描述

Array.prototype.filter()一样 ,它仅在通过标准函数时才从源发出值。

过滤大理石图

与众所周知的 Array.prototype.filter方法类似,此运算符从 Observable 源获取值,将其传递给 predicate 函数,然后仅发出 yielded 的值 true

仅发出目标为 DIV 元素的点击事件

import { fromEvent } from 'rxjs';
import { filter } from 'rxjs/operators';


const clicks = fromEvent(document, 'click');
const clicksOnDivs = clicks.pipe(filter(ev => ev.target.tagName === 'DIV'));
clicksOnDivs.subscribe(x => console.log(x));

也可以看看

RxJS expand
RxJS finalize
温馨提示
下载编程狮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; }