RxJs 和 switchMap

RxJs and switchMap

我想在我的网站上创建搜索引擎。 我想用 switchMap 取消之前的请求,因为这个函数 运行 async.

我通过 keyup 从输入中获取数据,示例:

<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

你可以试试这样的东西(假设你使用的是 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();
}