class Base {
model = 'base'
constructor() {
console.log(this.model)
}
}
class Derived extends Base {
model = 'derived'
}
let obj = new Derived()
console.log(obj.model)
打印结果: base derived
实例化 Derived 的对象时,父类 Base 构造函数中,Derived 里面定义的 model 还没有绑定到 this,所以只能取到'base'。如果想得到'derived'是否只能重写 Derived 的 constructor ?想问或者有没有更优雅的办法。
还有试了一下 es7 的静态属性
class Base {
static model = 'base'
constructor() {
console.log(this.constructor.model)
}
}
class Derived extends Base {
static model = 'derived'
}
let obj = new Derived()
打印结果: derived
虽然可以生效,但是不能通过对象实例(this)访问。
这是一个专为移动设备优化的页面(即为了让你能够在 Google 搜索结果里秒开这个页面),如果你希望参与 V2EX 社区的讨论,你可以继续到 V2EX 上打开本讨论主题的完整版本。
V2EX 是创意工作者们的社区,是一个分享自己正在做的有趣事物、交流想法,可以遇见新朋友甚至新机会的地方。
V2EX is a community of developers, designers and creative people.