Heim > Fragen und Antworten > Hauptteil
So eine Klasse:
class TestClass {
name = 'abc'; //直接声明在class中
static staticValue = 456; //这是静态属性
showName() {
console.log(this.name);
}
}
let cls = new TestClass();
cls.showName();
Entschuldigung, wird die obige Syntax in ES unterstützt? Wie konfiguriere ich sie, wenn Babel für die Übersetzung verwendet wird?