将 .apply() 与 “new” 运算符一起使用。这可能吗?
在JavaScript中,我想创建一个对象实例(通过运算符),但将任意数量的参数传递给构造函数。这可能吗?new
我想做的是这样的事情(但下面的代码不起作用):
function Something(){
// init stuff
}
function createSomething(){
return new Something.apply(null, arguments);
}
var s = createSomething(a,b,c); // 's' is an instance of Something
答案
从这里的回复中可以清楚地看出,没有内置的方式可以与接线员联系。然而,人们提出了一些非常有趣的解决方案。.apply()
new
我的首选解决方案是Matthew Crumley的这个(我已经修改了它以传递属性):arguments
var createSomething = (function() {
function F(args) {
return Something.apply(this, args);
}
F.prototype = Something.prototype;
return function() {
return new F(arguments);
}
})();