我有一个示例用例,我想从派生类的静态方法中访问MyOtherClass.property1
,但是假设我不知道派生类的名称,我只知道它具有此特定属性。
对于使用new
关键字调用的标准类实例,我可以使用new.target
。
有某种等效的静态方法吗?
class MyClass{
static method1(){
// I want to access MyOtherClass.property1 here
}
}
class MyOtherClass extends MyClass{
static method2(){
}
}
MyOtherClass.property1 = 1;
MyOtherClass.method1();
最佳答案
MyOtherClass
的原型指向MyClass
,因此它应该已经在原型链中,允许您直接访问它。然后使用this
访问应该指向MyOtherClass
的调用上下文,因为您正在使用MyOtherClass.method1()
进行调用:
class MyClass{
static method1(){
console.log("method1", this.property1)
}
}
class MyOtherClass extends MyClass{
static method2(){
console.log(method2)
}
}
MyOtherClass.property1 = 1;
MyOtherClass.method1()
关于javascript - 从静态类访问派生类属性,我们在Stack Overflow上找到一个类似的问题:https://stackoverflow.com/questions/51389576/