手写实现 bind 函数

本文详细讲解了JavaScript中`bind`函数的实现机制,包括返回新函数、绑定`this`和参数组合,并通过实例演示了原生bind和自定义bind的区别,以及处理构造函数中的this指向问题。
摘要由CSDN通过智能技术生成

 bind函数的实现有几个重点如下

(1)bind 返回一个函数

(2)返回的函数需要使用 apply 绑定 this

(3)需要把 bind 时候的参数和后续调用的时候的参数组合起来

Function.prototype.myBind = function(context) {
    if (typeof this !== 'function') {
        return
    }
    const args = [...arguments].slice(1)
    const fn = this
    return function Fn() {
        // 这句代码的解析请看文章正文
        const target = this instanceof Fn ? this : context
        return  fn.apply(target, args.concat([...arguments]))
       
    }
}

function setName(name) {
    this.name = name
}

const obj = {
    age: 1
}
// 使用原生的 bind 的结果
const setName1 = setName.bind(obj)
setName1('origin')
console.log('正确结果',  obj)

// 使用我们自己写的 bind 的结果
const setName2 = setName.myBind(obj)
setName1('custom')
console.log('自定义的结果',  obj)


const name11 = new setName1('new origin bind')
console.log('origin', name11)
const name22 = new setName2('new my bind')
console.log('custom', name22)

代码解释

  const target = this instanceof Fn ? this : context

这行代码,是因为 bind 返回一个函数,而任何一个函数都有可能使用 new 操作符作为构造函数,你要知道对于this 指针 new 操作符的优先级比硬绑定(bind)的优先级高。可以不写这行代码测试一下。

在测试一下正确的结果

经常把 bind 、call、apply搞混,可以先记住 call 和apply 是调用函数,bind 是返回函数。

评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

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

抵扣说明:

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

余额充值