感谢Function.prototype.bind
,有一种很好的方法来创建带参数参数的对象:
var d = new (Function.prototype.bind.apply(Date, [null, 2012, 8, 3]));
console.log(d); // => Mon Sep 03 2012 00:00:00 + timezone
不幸的是,IE8和更旧版本不支持绑定,但许多常见的polyfill都支持绑定。 one on MDN可能是最常见的:
Function.prototype.bind = function (oThis) {
if (typeof this !== "function") {
// closest thing possible to the ECMAScript 5 internal IsCallable function
throw new TypeError("Function.prototype.bind - what is trying to be bound is not callable");
}
var aArgs = Array.prototype.slice.call(arguments, 1),
fToBind = this,
fNOP = function () {},
fBound = function () {
return fToBind.apply(this instanceof fNOP && oThis ? this : oThis,
aArgs.concat(Array.prototype.slice.call(arguments)));
};
fNOP.prototype = this.prototype;
fBound.prototype = new fNOP();
return fBound;
};
但这会导致IE出现奇怪的结果:
console.log(d); // throws "Date.prototype.toString: 'this' is not a Date object"
类似于自定义类的东西,而不仅仅是本机对象。
我有点失落。是否有可能只是改变Function.prototype.bind
的定义来解决这个问题?我担心不是。