codecamp

RxJS findIndex

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

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

参量

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

returns

OperatorFunction<T, number>:符合条件的第一项的索引的 Observable。

描述

就像 find,但是发出找到的值的索引,而不是值本身。

findIndex大理石图

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

发出DIV元素上发生的首次点击的索引

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


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

也可以看看

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