最佳答案
给定以下类,我如何枚举它的属性,即获得类似 [station1, station2, station3 ...]
的输出?
我只能看到如何枚举属性的值,即 [null, null, null]
。
class stationGuide {
station1: any;
station2: any;
station3: any;
constructor(){
this.station1 = null;
this.station2 = null;
this.station3 = null;
}
}