用户用RxJS完成键入后如何开始处理?
Posted
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了用户用RxJS完成键入后如何开始处理?相关的知识,希望对你有一定的参考价值。
我有一个输入要点,在这里我想显示一个自动完成的解决方案。我尝试使用RxJS控制HTTP请求的编号。我想做:HTTP请求仅在用户停止输入1秒钟后才开始。
我创建此代码:
of(this.inputBox.nativeElement.value)
.pipe(
take(1),
map((e: any) => this.inputBox.nativeElement.value),
// wait 1 second to start
debounceTime(1000),
// if value is the same, ignore
distinctUntilChanged(),
// start connection
switchMap(term => this.autocompleteService.search(
term: this.inputBox.nativeElement.value
)),
).subscribe((result: AutocompleteResult[]) =>
console.log(result);
);
问题是debounceTime(1000)
没有等待继续管道。 switchMap在每次键入事件后立即启动。
用户完成输入后如何等待1秒?
答案
问题是您的链以of(this.inputBox.nativeElement.value).pipe(take(1), ...)
开头,因此好像您在每次按键时都在创建一个新的链(具有一个新的反跳计时器)。
相反,您应该只有一个链并将值推入其源:
const keyPress$ = new Subject();
...
keyPress$
.pipe(
debounceTime(1000),
...
)
...
keyPress$.next(this.inputBox.nativeElement.value);
以上是关于用户用RxJS完成键入后如何开始处理?的主要内容,如果未能解决你的问题,请参考以下文章
如何仅在用户完成键入时才调用 angularjs ngChange 处理程序
[RxJS] Implement RxJS `mergeMap` through inner Observables to Subscribe and Pass Values Through(代码片段
[RxJS] Implement RxJS `switchMap` by Canceling Inner Subscriptions as Values are Passed Through(代码片段