RxJS - 实用操作符 toArray



累计可观察对象中的所有源值,并在源对象完成后将值作为数组输出。

语法

toArray():Observable

返回值

返回一个可观察对象,当源对象完成后,该对象将源可观察对象中的值作为数组输出。

示例

import { of} from 'rxjs';
import { toArray } from 'rxjs/operators';

let list1 = of(2, 3, 4, 5, 6);
let final_val = list1.pipe(toArray());
final_val.subscribe(x => console.log(x));

输出

[2, 3, 4, 5, 6]
广告