no-this-before-super
在构造函数中调用 super()
之前禁止 this
/super
配置文件 中的
"extends": "eslint:recommended"
属性启用了该规则
在派生类的构造函数中,如果在调用 super()
之前使用了 this
/super
,则会引发引用错误。
此规则检查构造函数中的 this
/super
关键字,然后报告 super()
之前的关键字。
规则详情
此规则旨在在 super()
调用之前标记 this
/super
关键字。
示例
IgbHXOREhuUzqrkIHAUBELO1IBTM0/W5rjS4T6KeTRJddVuoa/qPZgBhw0wa2au1
/*eslint no-this-before-super: "error"*/
/*eslint-env es6*/
class A extends B {
constructor() {
this.a = 0;
super();
}
}
class A extends B {
constructor() {
this.foo();
super();
}
}
class A extends B {
constructor() {
super.foo();
super();
}
}
class A extends B {
constructor() {
super(this.foo());
}
}
FphvHt5MK/G5o4JKMpo8wFZScNX7kGyQzE3xqEeYlFcVQkbgr+qufrIGgDR/9BRp
/*eslint no-this-before-super: "error"*/
/*eslint-env es6*/
class A {
constructor() {
this.a = 0; // OK, this class doesn't have an `extends` clause.
}
}
class A extends B {
constructor() {
super();
this.a = 0; // OK, this is after `super()`.
}
}
class A extends B {
foo() {
this.a = 0; // OK. this is not in a constructor.
}
}
何时不使用
OgAT0/NaMCAsrHQH0W8h2JFlN+A7x+gRdwbhjkW1cIYOY+/W1xk5cDkKYX3/q0FrbzH/JsxR8LMc+yfPDdAANPYdDwLTiryXD1r8kq0FbvRFDeQS4S2NnEKxahRyc6ys7/o0Iq5xqWmQjVHYaUSs1EygrEUUy+ZZEf/MJJEsvRrs14ZiQpwkiiCJsBwQOMw5GM/YxiKQutwMu8RzLGTpH0sH/vy+yiugUjStxtnIro8=