RxJS - Join 操作符 race



它将提供一个可观察对象,该对象将是第一个源可观察对象的镜像副本。

语法

race(observables: array[]): Observable

参数

可观察对象 − 此操作符的参数为可观察对象数组。

返回值

它将返回一个可观察对象,该对象将是第一个源可观察对象的镜像副本。

示例

import { of, race } 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 = race(list1, list2);
final_val.subscribe(x => console.log(x));

输出

Race Operator
广告