RxJS - 联接操作符 concat



此操作符将按顺序发出给定输入的可观察对象,并继续下一个可观察对象。

语法

concat(observables: Array): Observable

参数

observables − 给定的输入是一个可观察对象数组。

返回值

一个可观察对象返回一个从源可观察对象的值合并的单个值。

示例

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

let list1 = of(2, 3, 4, 5, 6);
let list2 = of(4, 9, 16, 25, 36)
let final_val = list1.pipe(concat(list2));
final_val.subscribe(x => console.log(x));

输出

我们将两个可观察对象连接成一个。以下是输出。

concat Operator
广告