RxJS:公用操作符 – 时间戳

返回时间戳以及从源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));

输出

RxJS:公用操作符 - 时间戳

作者:terry,如若转载,请注明出处:https://www.web176.com/rxjs/1907.html

(0)
打赏 支付宝 支付宝 微信 微信
terryterry
上一篇 2021年2月9日 下午12:04
下一篇 2021年2月9日 下午12:06

相关推荐

发表回复

登录后才能评论