前端复习--很深入地理解对象(从实现bind函数入手)

本文介绍如何为不支持bind方法的浏览器手动实现JavaScript中bind函数的功能。通过修改Function.prototype来为所有函数提供bind方法,使开发者能在不同环境中统一使用。

摘要生成于 C知道 ,由 DeepSeek-R1 满血版支持, 前往体验 >

js 的 bind 函数能够帮我们避开很多麻烦事,但有些浏览器不支持bind的存在,那你就自己写一个呗。

问题来了,通过mdn可以查到bind的源码:

if (!Function.prototype.bind) {    //首先检查浏览器是否有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
                                 ? this
                                 : oThis || this,
                               aArgs.concat(Array.prototype.slice.call(arguments)));
        };

    fNOP.prototype = this.prototype;
    fBound.prototype = new fNOP();

    return fBound;
  };
}


(1)首先,一个函数 fn

function fn(){
     //function main body
}
fn是对象,fn的构造函数时Funcion,和一般对象定义公共方法一样

bind被定义在Function.prototype上,这样,任何函数实体(以Function构造函数 实例化得到),都会共享到bind方法.

而在构造函数Function中的this指向fn!!!

评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值