最佳答案
在TypeScript中循环枚举的字面量的正确方法是什么?
(我目前使用的是TypeScript 1.8.1。)
我有以下enum:
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看起来像是enum的索引号。