我正在尝试创建一个扩展Function
的类。
var MyClass = class MyClass extends Function {
constructor(func, /*some other things*/) {
//this is not defined in extended classes for some reason
var newThis = func;
//assign other stuff to newThis
return newThis;
}
//methods
}
起初我认为这会起作用,但instanceof
检查显示,创建的对象只是一个常规函数,没有我的任何方法或属性。然后我意识到我需要使用super
关键字来construct
和Function
。
var newThis = super(func.toString().split('(')[1].split(')')[0].split(','),
func.toString().split('{')[1].split('}')[0])
这是有效的,但它不符合内容安全策略(类似的),这意味着它在chrome应用程序中不起作用。
我不是你想要做的100%,但为了在ES6中正确地扩展一个类,你必须在做任何事情之前调用super()
。
class Foo extends Function {
constructor(){
super();
this.x = 'foo';
}
}
let test= new Foo();
console.log(test.x); // 'foo'
你可以在这里的babel REPL上试用