如何循环访问枚举值以在单选按钮中显示?
2022-08-29 23:40:09
在 TypeScript 中循环访问枚举的文字的正确方法是什么?
(我目前正在使用TypeScript 1.8.1。
我有以下枚举:
export enum MotifIntervention {
Intrusion,
Identification,
AbsenceTest,
Autre
}
export class InterventionDetails implements OnInit
{
constructor(private interService: InterventionService)
{
let i:number = 0;
for (let motif in MotifIntervention) {
console.log(motif);
}
}
显示的结果是一个列表
0
1
2
3
Intrusion,
Identification,
AbsenceTest,
Autre
我确实希望循环中只有四次迭代,因为枚举中只有四个元素。我不想有0 1 2和3似乎是枚举的索引号。