W3Cschool
恭喜您成為首批注冊用戶
獲得88經(jīng)驗值獎勵
收集所有源發(fā)射,并在源完成時將它們作為陣列發(fā)射。
toArray<T>(): OperatorFunction
<T, T[]>
沒有參數(shù)。
OperatorFunction<T, T[]>
:可觀察序列中的數(shù)組。
源完成后獲取數(shù)組內(nèi)的所有值
toArray
將等到源 Observable 完成后再發(fā)射包含所有發(fā)射的數(shù)組。當(dāng)源可觀察到錯誤時,將不會發(fā)出任何數(shù)組。
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]
Copyright©2021 w3cschool編程獅|閩ICP備15016281號-3|閩公網(wǎng)安備35020302033924號
違法和不良信息舉報電話:173-0602-2364|舉報郵箱:jubao@eeedong.com
掃描二維碼
下載編程獅App
編程獅公眾號
聯(lián)系方式:
更多建議: