gpt4 book ai didi

javascript - TSLint 烦人的消息

转载 作者:行者123 更新时间:2023-11-30 09:28:01 26 4
gpt4 key购买 nike

在我的 Angular 组件上,我使用了 RxJs 中的两种方法,debounceTime()distinctUntilChanged()

import { Component, OnInit } from '@angular/core';
import { FormControl } from '@angular/forms';

import 'rxjs/add/operator/debounceTime';
import 'rxjs/add/operator/distinctUntilChanged';

@Component({
selector: 'app-form4th',
templateUrl: './form4th.component.html',
})
export class Form4thComponent implements OnInit {
searchField: FormControl;
searches: string[] = [];

constructor() { }

ngOnInit() {
this.searchField = new FormControl();
this.searchField
.valueChanges
.debounceTime(400)
.distinctUntilChanged()
.subscribe(term => {
this.searches.push(term);
});
}
}

应用运行良好在执行(构建)时没有错误甚至没有警告消息ng serve ,并在浏览器上运行该应用程序按预期工作并且在浏览器控制台上也没有错误消息或警告。

但是,我的 vscode 上有一条奇怪的 TSLint 消息说:

[ts] Property 'debounceTime' does not exist on type 'Observable<any>'.

这有点烦人,因为我有点担心某些我不知道的东西在幕后不起作用。

我在这里错过了什么?谢谢。

最佳答案

正如一些评论中所解释的,这不是 TSLINT 错误,而是 Typescript 错误。

这里的事情是,当你这样做时,你正在修补 Observable 的原型(prototype):
导入“rxjs/add/operator/debounceTime”;
导入 'rxjs/add/operator/distinctUntilChanged';

与其这样做,您可能只想利用自 rxjs v5.5 以来称为 lettable operators 的新功能。它允许您使用一个新的 .pipe 运算符,它将函数作为参数(rxjs 运算符或您自己的)。

因此,请尝试以下代码,而不是您的代码:

import { Component, OnInit } from '@angular/core';
import { FormControl } from '@angular/forms';

// notice this import will not patch `Observable` prototype
import { debounceTime, distinctUntilChanged } from 'rxjs/operators';

@Component({
selector: 'app-form4th',
templateUrl: './form4th.component.html',
})
export class Form4thComponent implements OnInit {
searchField: FormControl;
searches: string[] = [];

constructor() { }

ngOnInit() {
this.searchField = new FormControl();

this.searchField
.valueChanges
.pipe(
debounceTime(400),
distinctUntilChanged()
)
.subscribe(term => {
this.searches.push(term);
});
}
}

通过不修补 Observable 的原型(prototype),它将帮助您的 bundler 进行 tree shaking(如果可用),但我相信 Typescript 会更容易进行必要的检查,因为函数必须导入到同一个文件中。 (也就是说,我一直在使用老式方法一段时间,而 VSC 按预期工作)。

关于javascript - TSLint 烦人的消息,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/48207198/

26 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com