gpt4 book ai didi

html - Angular:ngIf 无法识别枚举类型

转载 作者:行者123 更新时间:2023-12-02 18:35:06 26 4
gpt4 key购买 nike

这个*ngIf:

<div *ngIf="type === FilterType.DateRangeFilter">
...
</div>

导致错误

错误 TS2339:类型“FilterComponent”上不存在属性“FilterType”

即使枚举类型 FilterType 已导入组件中:

import { FilterType } from '../filter-collection/filter-collection.component'

@Component({
selector: 'app-filter',
templateUrl: './filter.component.html',
styleUrls: ['./filter.component.css']
})
export class FilterComponent {

constructor(private type : FilterType) {
}

ngOnInit(): void {

}

}

从这里开始:

export enum FilterType {
DateRangeFilter, SensorSelectFilter
}

有什么想法为什么这行不通吗?

最佳答案

您的 HTML 模板无权访问在组件外部声明的变量。要解决此问题,请将枚举分配给组件范围内的变量

import { FilterType } from '../filter-collection/filter-collection.component'

@Component({
selector: 'app-filter',
templateUrl: './filter.component.html',
styleUrls: ['./filter.component.css']
})
export class FilterComponent {

constructor(private type : FilterType) {
}

ngOnInit(): void {

}

filterType = FilterType

}

然后在您的模板中

<div *ngIf="type === filterType.DateRangeFilter">
...
</div>

关于html - Angular:ngIf 无法识别枚举类型,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/68896744/

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