我正在尝试将我的应用程序从Angular5升级到Angular6。我按照https://update.angular.io/上的步骤操作
至少我觉得我做了。
错误是:

Property 'debounceTime' does not exist on type 'Subject<string>'.

我的组件也丢失了去缓冲时间导入。我想是ng更新删除了它。

最佳答案

我在@siva636和@andrew lobban的帮助下解决了这个问题。
我需要用管子:

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

关于angular - Angular 6升级:debounceTime不是Subject的属性,我们在Stack Overflow上找到一个类似的问题:https://stackoverflow.com/questions/50191318/

10-09 17:04