0
if (!Function.prototype.bind) {
  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;
  };
}

我正在查看绑定函数的源代码,我只是在想他们为什么要这样做,Array.prototype.slice.call而我可以直接对我的arguments.

4

1 回答 1

2

因为arguments不是纯 JavaScript 数组,而是类数组对象。因此,为了对其进行更改,您必须使用将其转换为真正的数组Array.prototype.slice.call

来自MDN

arguments对象不是数组。它类似于 Array,但除了 之外没有任何 Array 属性length

于 2013-03-15T12:19:25.077 回答