Angular 6 upgrade: debounceTime is not property of Subject

前端 未结 4 1680
旧时难觅i
旧时难觅i 2021-02-19 08:06

I am attempting to upgrade my app from Angular 5 to Angular 6. I followed the steps on the https://update.angular.io/ At least i think i did.

The Error is :

<         


        
4条回答
  •  时光取名叫无心
    2021-02-19 08:44

    I solved it with the help of @Siva636 and @Andrew Lobban.

    I needed to use pipe:

      this.field$.pipe(
          debounceTime(400),
          distinctUntilChanged())
    

提交回复
热议问题