美文网首页
bind - 2020-11-03

bind - 2020-11-03

作者: 勇敢的小拽马 | 来源:发表于2023-02-27 10:27 被阅读0次

https://zhuanlan.zhihu.com/p/85438296

Function.prototype.bind2 = function(context) {

  if (typeof this !== "function") {
    throw new Error(
      "Function.prototype.bind - what is trying to be bound is not callable"
    );
  }
  
  var self = this;
  var args = Array.prototype.slice.call(arguments, 1)

  var fNOP = function () {};

  var fBound = function () {
    var bindArgs = Array.prototype.slice.call(arguments);
    // 当作为构造函数时,this 指向实例,此时结果为 true,将绑定函数的 this 指向该实例,可以让实例获得来自绑定函数的值
    // 以上面的是 demo 为例,如果改成 `this instanceof fBound ? null : context`,实例只是一个空对象,将 null 改成 this ,实例会具有 habit 属性
    // 当作为普通函数时,this 指向 window,此时结果为 false,将绑定函数的 this 指向 context
    return self.apply(
      this instanceof fBound ? this : context,
      args.concat(bindArgs)
    );
  };
  // 修改返回函数的 prototype 为绑定函数的 prototype,实例就可以继承绑定函数的原型中的值
  fNOP.prototype = this.prototype;
  fBound.prototype = new fNOP();
  return fBound;
}

相关文章

网友评论

      本文标题:bind - 2020-11-03

      本文链接:https://www.haomeiwen.com/subject/vfvivktx.html