美文网首页
JavaScript 中call、apply、bind、new的

JavaScript 中call、apply、bind、new的

作者: 跑者小越 | 来源:发表于2017-06-30 21:42 被阅读43次

    【call】

    call() 方法在使用一个指定的 this 值和若干个指定的参数值的前提下调用某个函数或方法。

    举例:

    var foo = {
        value: 1
    };
    
    function bar() {
        console.log(this.value);
    }
    
    bar.call(foo); // 1
    

    注意两点:

    • call 改变了 this 的指向,指向到 foo
    • bar函数执行了

    第一步:改变this指向

    我们模拟的步骤可以分为:

    • 将函数设为对象的属性
    • 执行该函数
    • 删除该函数
    // 第一版
    Function.prototype.call2 = function(context) {
        // 首先要获取调用call的函数,用this可以获取
        context.fn = this;
        context.fn();
        delete context.fn;
    }
    
    // 测试一下
    var foo = {
        value: 1
    };
    
    function bar() {
        console.log(this.value);
    }
    
    bar.call2(foo); // 1
    

    第二步:call 函数还能给定参数执行函数

    // 第二版
    Function.prototype.call2 = function(context) {
        context.fn = this;
        var args = [];
        for(var i = 1, len = arguments.length; i < len; i++) {
            args.push('arguments[' + i + ']');
        }
        eval('context.fn(' + args +')');
        delete context.fn;
    }
    
    // 测试一下
    var foo = {
        value: 1
    };
    
    function bar(name, age) {
        console.log(name)
        console.log(age)
        console.log(this.value);
    }
    
    bar.call2(foo, 'kevin', 18); 
    // kevin
    // 18
    // 1
    

    第三步:this 参数可以传 null,当为 null 的时候,视为指向 window;函数是可以有返回值的

    / 第三版
    Function.prototype.call2 = function (context) {
        var context = context || window;
        context.fn = this;
    
        var args = [];
        for(var i = 1, len = arguments.length; i < len; i++) {
            args.push('arguments[' + i + ']');
        }
    
        var result = eval('context.fn(' + args +')');
    
        delete context.fn
        return result;
    }
    
    // 测试一下
    var value = 2;
    
    var obj = {
        value: 1
    }
    
    function bar(name, age) {
        console.log(this.value);
        return {
            value: this.value,
            name: name,
            age: age
        }
    }
    
    bar.call(null); // 2
    
    console.log(bar.call2(obj, 'kevin', 18));
    // 1
    // Object {
    //    value: 1,
    //    name: 'kevin',
    //    age: 18
    // }
    

    【apply】

    apply() 方法在使用一个指定的 this 值和若干个指定的参数构成的数列的前提下调用某个函数或方法。

    Function.prototype.apply = function (context, arr) {
        var context = Object(context) || window;
        context.fn = this;
    
        var result;
        if (!arr) {
            result = context.fn();
        }
        else {
            var args = [];
            for (var i = 0, len = arr.length; i < len; i++) {
                args.push('arr[' + i + ']');
            }
            result = eval('context.fn(' + args + ')')
        }
    
        delete context.fn
        return result;
    }
    
    

    【bind】

    bind() 方法会创建一个新函数。当这个新函数被调用时,bind() 的第一个参数将作为它运行时的 this,之后的一序列参数将会在传递的实参前传入作为它的参数。

    由此我们可以首先得出 bind 函数的两个特点:

    • 返回一个函数
    • 可以传入参数

    第一步:返回函数的模拟实现

    var foo = {
        value: 1
    };
    
    function bar() {
        console.log(this.value);
    }
    
    // 返回了一个函数
    var bindFoo = bar.bind(foo); 
    
    bindFoo(); // 1
    

    关于指定 this 的指向,我们可以使用 call 或者 apply 实现

    // 第一版
    Function.prototype.bind2 = function (context) {
        var self = this;
        return function () {
            self.apply(context);
        }
    
    }
    

    第二步:传参的模拟实现

    var foo = {
        value: 1
    };
    
    function bar(name, age) {
        console.log(this.value);
        console.log(name);
        console.log(age);
    
    }
    
    var bindFoo = bar.bind(foo, 'daisy');
    bindFoo('18');
    // 1
    // daisy
    // 18
    

    函数需要传 name 和 age 两个参数,竟然还可以在 bind 的时候,只传一个 name,在执行返回的函数的时候,再传另一个参数 age!

    // 第二版
    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);
            self.apply(context, args.concat(bindArgs));
        }
    
    }
    

    第三步:构造函数效果的模拟实现

    一个绑定函数也能使用new操作符创建对象:这种行为就像把原函数当成构造器。提供的 this 值被忽略,同时调用时的参数被提供给模拟函数。

    也就是说当 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
    

    注意:尽管在全局和 foo 中都声明了 value 值,最后依然返回了 undefind,说明绑定的 this 失效了,如果大家了解 new 的模拟实现,就会知道这个时候的 this 已经指向了 obj。

    // 第三版
    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 指向实例,此时结果为 true,将绑定函数的 this 指向该实例,可以让实例获得来自绑定函数的值
            // 以上面的是 demo 为例,如果改成 `this instanceof fBound ? null : context`,实例只是一个空对象,将 null 改成 this ,实例会具有 habit 属性
            // 当作为普通函数时,this 指向 window,此时结果为 false,将绑定函数的 this 指向 context
            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.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);
            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);
            self.apply(this instanceof fNOP ? this : context, args.concat(bindArgs));
        }
    
        fNOP.prototype = this.prototype;
        fBound.prototype = new fNOP();
        return fBound;
    }
    

    【new】

    new 运算符创建一个用户定义的对象类型的实例或具有构造函数的内置对象类型之一

    因为 new 是关键字,所以无法像 bind 函数一样直接覆盖,所以我们写一个函数,命名为 objectFactory,来模拟 new 的效果。用的时候是这样的:

    function Otaku () {
        ……
    }
    
    // 使用 new
    var person = new Otaku(……);
    // 使用 objectFactory
    var person = objectFactory(Otaku, ……)
    
    // 第一版代码
    function objectFactory() {
    
        var obj = new Object(),
    
        Constructor = [].shift.call(arguments);
    
        obj.__proto__ = Constructor.prototype;
    
        Constructor.apply(obj, arguments);
    
        return obj;
    
    };
    

    在这一版中,我们:

    • 用new Object() 的方式新建了一个对象 obj
    • 取出第一个参数,就是我们要传入的构造函数。此外因为 shift 会修改原数组,所以 arguments 会被去除第一个参数
    • 将 obj 的原型指向构造函数,这样 obj 就可以访问到构造函数原型中的属性
    • 使用 apply,改变构造函数 this 的指向到新建的对象,这样 obj 就可以访问到构造函数中的属性
    • 返回 obj

    第二步:返回值效果实现

    需要判断返回的值是不是一个对象,如果是一个对象,我们就返回这个对象,如果没有,我们该返回什么就返回什么。

    // 第二版的代码
    function objectFactory() {
    
        var obj = new Object(),
    
        Constructor = [].shift.call(arguments);
    
        obj.__proto__ = Constructor.prototype;
    
        var ret = Constructor.apply(obj, arguments);
    
        return typeof ret === 'object' ? ret : obj;
    
    };
    

    相关文章

      网友评论

          本文标题:JavaScript 中call、apply、bind、new的

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