我想在我的网站上创建搜索引擎。 我想使用switchMap取消先前的请求,因为此函数异步运行。
我通过键盘输入来获取数据,例如:
<input type="text" (keyup)="subject.next($event.target.value)">
TypeScript
subject = new Subject<string>();
ngOnInit() {
this.subject.asObservable().pipe(debounceTime(500)).subscribe(res => {
console.log(res);
});
}
我想在这里使用switchMap和timer,但是什么都不会改变,它始终不起作用,没有人知道如何重构此代码以与RxJs中的switchMap和timer一起使用吗?
我在stackblitz中的示例:
https://stackblitz.com/edit/angular-playground-53grij?file=app%2Fapp.component.ts
答案 0 :(得分:2)
您可以尝试使用类似的方法(假设您正在使用RxJS 6):
subject = new Subject<string>();
subscription: Subscription;
ngOnInit() {
this.subscription = this.subject
.pipe(
debounceTime(500),
switchMap((query: string) => {
return this.http.get('http://url?q=' + query);
})
)
.subscribe((res: any) => {
console.log(res);
});
}
ngOnDestroy() {
this.subscription.unsubscribe();
}