4
次のクラスが与えられた場合、そのプロパティを列挙するにはどうすればいいですか?つまり、[station1, station2, station3 ...]
のような出力を得ることができます。プロパティの値を列挙する方法、つまり[null, null, null]
しか見ることができません。TypeScriptオブジェクトのプロパティを列挙します
class stationGuide {
station1: any;
station2: any;
station3: any;
constructor(){
this.station1 = null;
this.station2 = null;
this.station3 = null;
}
}
あなたがObject.keys' 'で見たことがありますか? – evolutionxbox