我正在尝试创建一个扩展的类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 应用程序中不起作用。