JavaScript温故而知新——bind()方法的实现

本文详细介绍了JavaScript中的bind方法,包括其基本用法、参数传递方式以及如何作为构造函数使用。同时,提供了bind方法的实现代码。

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

bind()方法和apply()call()相似,都可以用来改变某个函数运行时this的指向。

并且同样接受的第一个参数作为它运行时的this,之后的参数都会传入作为它的参数。

但是bind()还有一个最大的特点就是它会创建一个新的函数,以便于我们稍后作调用,这也是它区别于apply()call()的地方。

先来看下bind的使用

(想自学习编程的小伙伴请搜索圈T社区,更多行业相关资讯更有行业相关免费视频教程。完全免费哦!)

var foo = {
    value: 1
};
function bar() {
    return this.value;
}
var bindFoo = bar.bind(foo);
console.log(bindFoo());     // 1
模拟实现一
Function.prototype.bind2 = function() {
    // 将this作保存,代表被绑定的函数
    var self = this;
    return function() {
        // 绑定函数可能会有返回值,所以这里要return一下
        return self.apply(context);
    }
}

bind的传参:需要注意我们在bind的时候可以进行传参,并且在执行bind返回的函数的时候依然可以传参。如下例子:

var foo = {
    value: 1
};
function bar(name, age) {
    console.log(this.value);
    console.log(name);
    console.log(age);

}
var bindFoo = bar.bind(foo, 'xiao');
bindFoo('18');
// 1
// xiao
// 18
传参效果的实现
Function.prototype.bind2 = function (context) {

    var self = this;
    // 获取 bind2 函数从第二个参数到最后一个参数
    var args = Array.prototype.slice.call(arguments, 1);

    return function () {
        // 这里的arguments是指bind返回的函数传入的参数
        var bindArgs = Array.prototype.slice.call(arguments);
        return self.apply(context, args.concat(bindArgs));
    }
}

bind还有一个特点:就是 bind 返回的函数可以被作为构造函数来使用,此时 bind 指定的this值会失效,但传入的参数依然生效。如下例子:

var value = 2;

var foo = {
    value: 1
};

function bar(name, age) {
    this.habit = 'shopping';
    console.log(this.value);
    console.log(name);
    console.log(age);
}

bar.prototype.friend = 'kevin';

var bindFoo = bar.bind(foo, 'daisy');

var obj = new bindFoo('18');
// undefined
// daisy
// 18
console.log(obj.habit);
console.log(obj.friend);
// shopping
// kevin

可以看到由于这里使用了new操作符,this已经指向了obj,因此this.value打印出来为undefined

构造函数效果的实现

为了让this指向new出来的对象,我们可以通过修改返回的函数的原型来实现

Function.prototype.bind2 = function (context) {
    var self = this;
    var args = Array.prototype.slice.call(arguments, 1);

    var fBound = function () {
        var bindArgs = Array.prototype.slice.call(arguments);
        // 判断是否作用构造函数
        // 当作为构造函数时,将绑定函数的 this 指向 new 创建的实例,可以让实例获得来自绑定函数的值
        // 当作为普通函数时,将绑定函数的 this 指向 context
        return self.apply(this instanceof fBound ? this : context, args.concat(bindArgs));
    }
    // 修改返回函数的 prototype 为绑定函数的 prototype,实例就可以继承绑定函数的原型中的值
    fBound.prototype = this.prototype;
    return fBound;
}

不过上面的写法还存在点问题,fBound.prototype = this.prototype这一句代码直接修改了 fBound.prototype,也会直接修改绑定函数的 prototype。如下例子:

function bar() {}

var bindFoo = bar.bind2(null);

// 修改 bindFoo 的值
bindFoo.prototype.value = 1;

// 导致 bar.prototype 的值也被修改了
console.log(bar.prototype.value)    // 1

因此可以通过一个空函数作一个中转,避免绑定函数的 prototype 的属性被修改:

Function.prototype.bind2 = function (context) {

    var self = this;
    var args = Array.prototype.slice.call(arguments, 1);

    var fNOP = function () {};

    var fBound = function () {
        var bindArgs = Array.prototype.slice.call(arguments);
        return self.apply(this instanceof fNOP ? this : context, args.concat(bindArgs));
    }
    
    fNOP.prototype = this.prototype;
    fBound.prototype = new fNOP();
    return fBound;
}

当调用bind的不是函数还得做一下错误处理,完整实现如下:

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);
        return self.apply(this instanceof fNOP ? this : context, args.concat(bindArgs));
    }

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

结尾

对于这篇文章理解起来有难度的话,建议先回顾一下原型,作用域和闭包相关的知识

评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

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

抵扣说明:

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

余额充值