我正在使用babel进行转换.
我有类BaseComponent,它由类Logger扩展.
当我在浏览器中运行新的Logger()时,我收到此错误
没有’new’就不能调用类构造函数BaseComponent
抛出这个的代码是:
var Logger = function (_BaseComponent) { _inherits(Logger,_BaseComponent); function Logger() { _classCallCheck(this,Logger); return _possibleConstructorReturn(this,Object.getPrototypeOf(Logger).call(this,"n")); //throws here }