作者热门文章
- iOS/Objective-C 元类和类别
- objective-c - -1001 错误,当 NSURLSession 通过 httpproxy 和/etc/hosts
- java - 使用网络类获取 url 地址
- ios - 推送通知中不播放声音
我正在使用 Gulp 运行 babelify 7.2.0,但在以下代码中出现错误:
class One {}
class Two extends One {
constructor() {
this.name = 'John';
}
}
错误的关键在于:
SyntaxError: [the file path in question]: 'this' is not allowed before super()
20 | class Two extends One {
21 | constructor() {
> 22 | this.name = 'John';
| ^
23 | }
24 | }
25 |
在我看来,这不应该触发,因为我根本没有在构造函数中进行任何 super
调用,因此没有冲突的风险。我已经在 Github 上提交了一个问题,但我想知道是否有办法同时将其关闭。
最佳答案
这不是错误。子类必须在尝试访问this
之前调用super
显式:
class Two extends One {
constructor(...args) {
super(...args);
this.name = 'John';
}
}
这是在 ECMAScript 标准中定义的(参见 this 答案),Babel 紧随其后。
关于javascript - 有没有办法关闭 babelify 中的 "this is not allowed before super"规则?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/34172639/
我是一名优秀的程序员,十分优秀!