我如何概括下面的函数来取N个参数? (使用电话或申请?)
是否有一种将参数应用于'new'的编程方式?我不希望构造函数被视为普通函数。
/**
* This higher level function takes a constructor and arguments
* and returns a function, which when called will return the
* lazily constructed value.
*
* All the arguments, except the first are pased to the constructor.
*
* @param {Function} constructor
*/
function conthunktor(Constructor) {
var args = Array.prototype.slice.call(arguments, 1);
return function() {
console.log(args);
if (args.length === 0) {
return new Constructor();
}
if (args.length === 1) {
return new Constructor(args[0]);
}
if (args.length === 2) {
return new Constructor(args[0], args[1]);
}
if (args.length === 3) {
return new Constructor(args[0], args[1], args[2]);
}
throw("too many arguments");
}
}
qUnit测试:
test("conthunktorTest", function() {
function MyConstructor(arg0, arg1) {
this.arg0 = arg0;
this.arg1 = arg1;
}
MyConstructor.prototype.toString = function() {
return this.arg0 + " " + this.arg1;
}
var thunk = conthunktor(MyConstructor, "hello", "world");
var my_object = thunk();
deepEqual(my_object.toString(), "hello world");
});
答案 0 :(得分:95)
您就是这样做的:
function applyToConstructor(constructor, argArray) {
var args = [null].concat(argArray);
var factoryFunction = constructor.bind.apply(constructor, args);
return new factoryFunction();
}
var d = applyToConstructor(Date, [2008, 10, 8, 00, 16, 34, 254]);
通话稍微容易
function callConstructor(constructor) {
var factoryFunction = constructor.bind.apply(constructor, arguments);
return new factoryFunction();
}
var d = callConstructor(Date, 2008, 10, 8, 00, 16, 34, 254);
您可以使用其中任何一个来创建工厂功能:
var dateFactory = applyToConstructor.bind(null, Date)
var d = dateFactory([2008, 10, 8, 00, 16, 34, 254]);
或
var dateFactory = callConstructor.bind(null, Date)
var d = dateFactory(2008, 10, 8, 00, 16, 34, 254);
它适用于任何构造函数,而不仅仅是可以兼容函数的内置函数或构造函数(如Date)。
但是它确实需要Ecmascript 5 .bind函数。垫片可能无法正常工作。
一种不同的方法,更多的是其他一些答案的风格是创建内置new
的函数版本。这不适用于所有内置函数(如Date)。
function neu(constructor) {
// http://www.ecma-international.org/ecma-262/5.1/#sec-13.2.2
var instance = Object.create(constructor.prototype);
var result = constructor.apply(instance, Array.prototype.slice.call(arguments, 1));
// The ECMAScript language types are Undefined, Null, Boolean, String, Number, and Object.
return (result !== null && typeof result === 'object') ? result : instance;
}
function Person(first, last) {this.first = first;this.last = last};
Person.prototype.hi = function(){console.log(this.first, this.last);};
var p = neu(Person, "Neo", "Anderson");
现在,您当然可以照常.apply
.call
或.bind
或neu
。
例如:
var personFactory = neu.bind(null, Person);
var d = personFactory("Harry", "Potter");
我觉得我给出的第一个解决方案更好,因为它不依赖于你正确复制内置语义,它可以与内置函数一起使用。
答案 1 :(得分:50)
试试这个:
function conthunktor(Constructor) {
var args = Array.prototype.slice.call(arguments, 1);
return function() {
var Temp = function(){}, // temporary constructor
inst, ret; // other vars
// Give the Temp constructor the Constructor's prototype
Temp.prototype = Constructor.prototype;
// Create a new instance
inst = new Temp;
// Call the original Constructor with the temp
// instance as its context (i.e. its 'this' value)
ret = Constructor.apply(inst, args);
// If an object has been returned then return it otherwise
// return the original instance.
// (consistent with behaviour of the new operator)
return Object(ret) === ret ? ret : inst;
}
}
答案 2 :(得分:14)
在所有情况下,此功能与new
相同。但它可能会明显慢于999的答案,所以只有在你确实需要时才使用它。
function applyConstructor(ctor, args) {
var a = [];
for (var i = 0; i < args.length; i++)
a[i] = 'args[' + i + ']';
return eval('new ctor(' + a.join() + ')');
}
更新:一旦ES6支持普及,您就可以写下:
function applyConstructor(ctor, args) {
return new ctor(...args);
}
...但您不需要,因为标准库函数Reflect.construct()
完全符合您的要求!
答案 3 :(得分:4)
另一种方法,需要修改被调用的实际构造函数,但对我来说比使用eval()或在构造链中引入一个新的虚函数更干净...保持你的conthunktor函数如
function conthunktor(Constructor) {
// Call the constructor
return Constructor.apply(null, Array.prototype.slice.call(arguments, 1));
}
修改被调用的构造函数...
function MyConstructor(a, b, c) {
if(!(this instanceof MyConstructor)) {
return new MyConstructor(a, b, c);
}
this.a = a;
this.b = b;
this.c = c;
// The rest of your constructor...
}
所以你可以尝试:
var myInstance = conthunktor(MyConstructor, 1, 2, 3);
var sum = myInstance.a + myInstance.b + myInstance.c; // sum is 6
答案 4 :(得分:3)
如果Object.create
不可用,使用临时构造函数似乎是最佳解决方案。
如果Object.create
可用,那么使用它是一个更好的选择。 在Node.js上,使用Object.create
会产生更快的代码。以下是Object.create
如何使用的示例:
function applyToConstructor(ctor, args) {
var new_obj = Object.create(ctor.prototype);
var ctor_ret = ctor.apply(new_obj, args);
// Some constructors return a value; make sure to use it!
return ctor_ret !== undefined ? ctor_ret: new_obj;
}
(显然,args
参数是要应用的参数列表。)
我有一段代码,最初使用eval
来读取由另一个工具创建的数据。 (是的,eval
是邪恶的。)这将实例化一个包含数百到数千个元素的树。基本上,JavaScript引擎负责解析和执行一堆new ...(...)
表达式。我将系统转换为解析JSON结构,这意味着我必须让我的代码确定为树中每种类型的对象调用哪个构造函数。当我在我的测试套件中运行新代码时,我惊讶地看到相对于eval
版本的显着减慢。
eval
版本: 1秒。 Object.create
的JSON版测试套件: 1秒。 测试套件创建多个树。我计算出我的applytoConstructor
函数在运行测试套件时调用了大约125,000次。
答案 5 :(得分:3)
在ECMAScript 6中,您可以使用spread运算符将带有new关键字的构造函数应用于参数数组:
var dateFields = [2014, 09, 20, 19, 31, 59, 999];
var date = new Date(...dateFields);
console.log(date); // Date 2014-10-20T15:01:59.999Z
答案 6 :(得分:1)
这种情况有一个可以解决的问题。对于您希望使用apply或call方法调用的每个Class,必须先调用convertToAllowApply('classNameInString'); Class必须在同一个Scoope o global scoope中(我不会尝试发送ns.className例如...)
有代码:
function convertToAllowApply(kName){
var n = '\n', t = '\t';
var scrit =
'var oldKlass = ' + kName + ';' + n +
kName + '.prototype.__Creates__ = oldKlass;' + n +
kName + ' = function(){' + n +
t + 'if(!(this instanceof ' + kName + ')){'+ n +
t + t + 'obj = new ' + kName + ';'+ n +
t + t + kName + '.prototype.__Creates__.apply(obj, arguments);'+ n +
t + t + 'return obj;' + n +
t + '}' + n +
'}' + n +
kName + '.prototype = oldKlass.prototype;';
var convert = new Function(scrit);
convert();
}
// USE CASE:
myKlass = function(){
this.data = Array.prototype.slice.call(arguments,0);
console.log('this: ', this);
}
myKlass.prototype.prop = 'myName is myKlass';
myKlass.prototype.method = function(){
console.log(this);
}
convertToAllowApply('myKlass');
var t1 = myKlass.apply(null, [1,2,3]);
console.log('t1 is: ', t1);