- single
- 签名:
single(a: Function): Observable
- 签名:
- 发出通过表达式的单一项。
- 示例
- 示例 1: 发出通过断言的第一个数字
- 示例
- 其他资源
single
签名: single(a: Function): Observable
发出通过表达式的单一项。
示例
示例 1: 发出通过断言的第一个数字
( jsBin |
jsFiddle )
import { from } from 'rxjs/observable/from';
import { single } 'rxjs/operators';
// 发出 (1,2,3,4,5)
const source = from([1, 2, 3, 4, 5]);
// 发出匹配断言函数的一项
const example = source.pipe(single(val => val === 4));
// 输出: 4
const subscribe = example.subscribe(val => console.log(val));
其他资源
- single - 官方文档
源码: https://github.com/ReactiveX/rxjs/blob/master/src/internal/operators/single.ts