codecamp

RxJS find

仅发出满足某些条件的源 Observable 发出的第一个值。

find<T>(predicate: (value: T, index: number, source: Observable<T>) => boolean, thisArg?: any): OperatorFunction<T, T | undefined>

参量

谓词 每个项目都调用一个函数以测试条件匹配。
thisArg 可选的。默认值为 undefined。一个可选的参数来确定的值this 的predicate功能。

returns

OperatorFunction<T, T | undefined>:符合条件的第一项的可观察值。

描述

查找通过测试的第一个值并将其发出。

找到大理石图

find在源 Observable 中搜索与所体现的指定条件匹配的第一项predicate,并返回源中的第一项。不同于firstpredicate是中的必填项find,如果未找到有效值,则不会发出错误。

查找并发出发生在 DIV 元素上的第一次点击

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


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

也可以看看

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