codecamp

RxJS toArray

收集所有源发射,并在源完成时将它们作为阵列发射。

toArray<T>(): OperatorFunction<T, T[]>

参量

没有参数。

returns

OperatorFunction<T, T[]>:可观察序列中的数组。

描述

源完成后获取数组内的所有值

toArray大理石图

toArray将等到源 Observable 完成后再发射包含所有发射的数组。当源可观察到错误时,将不会发出任何数组。

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


const source = interval(1000);
const example = source.pipe(
  take(10),
  toArray()
);


const subscribe = example.subscribe(val => console.log(val));


// output: [0, 1, 2, 3, 4, 5, 6, 7, 8, 9]
RxJS timestamp
RxJS window
温馨提示
下载编程狮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; }