作者热门文章
- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
这个*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/
我是一名优秀的程序员,十分优秀!