返回时间戳以及从源Observable发出的值,该值说明发出该值的时间。
句法
timestamp(): Observable
返回值
返回时间戳以及从源Observable发出的值,该值说明发出该值的时间。
例
import { of } from 'rxjs'; import { filter, timestamp } from 'rxjs/operators'; let list1 = of(2, 3, 4, 5, 6); let final_val = list1.pipe(timestamp()); final_val.subscribe(x => console.log(x));
输出
作者:terry,如若转载,请注明出处:https://www.web176.com/rxjs/1907.html