babelHelpers.inherits = function (subClass, superClass) {
if (typeof superClass !== "function" && superClass !== null) {
throw new TypeError("Super expression must either be null or a function, not " + typeof superClass);
}
subClass.prototype = Object.create(superClass && superClass.prototype, {
constructor: {
value: subClass,
enumerable: false,
writable: true,
configurable: true
}
});
if (superClass) Object.setPrototypeOf ? Object.setPrototypeOf(subClass,superClass) : subClass.__proto__ = superClass;
};
我知道这是我的应用程序中正在执行的错误代码。但我想知道为什么总是被调用这个错误?在初始化构造函数或调用super()方法时是否存在任何问题,或者在导入不同的模块时是否存在问题?请提供一些建议。