# no-this-before-super

在构造函数中调用 super() 之前禁止 this/super

配置文件中的 "extends": "eslint:recommended" 属性启用了该规则

在派生类的构造函数中,如果在调用 super() 之前使用了 this/super,则会引发引用错误。

此规则检查构造函数中的 this/super 关键字,然后报告 super() 之前的关键字。

# 规则详情

此规则旨在在 super() 调用之前标记 this/super 关键字。

# 示例

此规则的错误代码示例:

/*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());
    }
}

此规则的正确代码示例:

/*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.
    }
}

# 何时不使用

如果您不想在构造函数中在 super() 之前收到有关使用 this/super 的通知,您可以安全地禁用此规则。

Last Updated: 5/13/2023, 8:55:38 PM