2

感谢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 都涵盖了这一点。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?恐怕不是。

4

0 回答 0