该运算符将为您提供来自源Observable的第一个值的索引,该索引恰好满足谓词函数中的条件。
句法
findIndex(predicate_func: function): Observable
参量
predicate_func当条件满足时,predicate_function将决定要选择的第一个索引。
返回值
它将从源Observable返回第一个值,该值恰好满足谓词函数内部的条件
例
import { of } from 'rxjs'; import { findIndex } from 'rxjs/operators'; let list1 = of(24, 3, 4, 9, 10, 15); let final_val = list1.pipe(findIndex(x => x % 2 === 0),); final_val.subscribe(x => console.log(x));
输出
0
作者:terry,如若转载,请注明出处:https://www.web176.com/rxjs/1923.html