首页 > 解决方案 > 属性“filteredOptions”没有初始值设定项,也没有在构造函数中明确分配

问题描述

在我的 Angular 应用程序中,我有一个组件:

  filteredOptions: Observable<string[]>;

以下行给出错误:

Property 'filteredOptions' has no initializer and is not definitely assigned in the constructor.

28   filteredOptions: Observable<string[]>;

标签: javascriptnode.jsangularobservableinitializer

解决方案


这是因为typescript 2.7.2包含一个严格的类检查应该在构造函数中声明所有属性的位置。因此,要解决这个问题,您可以:

  • 只需添加一个爆炸符号(!),例如:name!:string;
  • 添加"strictPropertyInitialization": false到您的编译器选项。
  • 利用filteredOptions: Observable<string[]> | undefined;
  • 利用filteredOptions?: Observable<string[]>

更多细节:

  • name!:string;: 编译器相信我,我会保证它不会是未定义的(可能导致不可预知的行为)
  • "strictPropertyInitialization": false:编译器请在任何地方停止您的严格检查
  • 最后两个解决方案:编译器,filteredOptions可能有也可能没有价值。在这种情况下,您有责任在您的情况下处理未定义的值(?.在您的 HTML 模板中使用,nullundefined检查...等)

推荐阅读