在RxJS中,经过一定时间后,诸如auditTime
和throttleTime
之类的过滤器会发出Observable(以不同的方式)。我需要发出一个Observable,然后 then 等待一段时间,然后再发出下一个值。
就我而言,我在Angular工作。例如,这段代码:
this.fooService$.pipe(throttleTime(10000)).subscribe(() => this.doSomething());
不能满足我的需要,因为发射发生在持续时间的结尾。我需要相反的情况:发射发生,然后延迟。我该怎么做?
答案 0 :(得分:1)
使用经典的超时功能怎么办?
this.fooService$.subscribe( () =>
setTimeout(() => { this.doSomething(); }, 3000)
);
编辑:
请参考您的评论,在发出通知的一侧执行以下操作(仅作为示例):
// RxJS v6+
import { timer, BehaviorSubject } from 'rxjs';
// timer starts with a delay of 1000 ms and then emits every 2000 ms
const source = timer(1000, 2000);
const emitter: BehaviorSubject<number> = new BehaviorSubject(-1);
const subscribe = source.subscribe( value => this.emitter.next(value));
答案 1 :(得分:0)
这应该可以在tap()
上进行操作
this.fooService$.pipe(
tap(() => this.doSomething()),
switchMap(()=>timer(10000))
)
.subscribe();