codecamp

RxJS take

count发出源 Observable 发出的第一个值。

take<T>(count: number): MonoTypeOperatorFunction<T>

参量

计数 next发出的最大值数。

returns

MonoTypeOperatorFunction<T>:一个 Observable,它仅count 发出源 Observable 发出的第一个值,或者如果源发出的count值少于该值,则从该源发出的所有值。

投掷

ArgumentOutOfRangeError使用时take(i),如果,它将 ArgumentOutOrRangeError 传递给观察者的error回调i < 0

描述

count从源中获取第一个值,然后完成。

拿大理石图

take返回一个 Observable,它仅count发出源 Observable 发出的第一个值。如果源发出的count值少于值,则将发出其所有值。之后,无论源是否完成,它都会完成。

采取无限的 1 秒间隔的前 5 秒

import { interval } from 'rxjs';
import { take } from 'rxjs/operators';


const intervalCount = interval(1000);
const takeFive = intervalCount.pipe(take(5));
takeFive.subscribe(x => console.log(x));


// Logs:
// 0
// 1
// 2
// 3
// 4

也可以看看

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