美文网首页
JavaScript this

JavaScript this

作者: oWSQo | 来源:发表于2019-07-13 09:01 被阅读0次

    JavaScript函数中的this指向并不是在函数定义的时候确定的,而是在调用的时候确定的。换句话说,函数的调用方式决定了this指向。
      JavaScript中,普通的函数调用方式有三种:直接调用、方法调用和new调用。除此之外,还有一些特殊的调用方式,比如通过bind()将函数绑定到对象之后再进行调用、通过call()apply()进行调用等。而ES6引入了箭头函数之后,箭头函数调用时,其this指向又有所不同。

    直接调用

    直接调用,就是通过函数名(...)这种方式调用。这时候,函数内部的this指向全局对象,在浏览器中全局对象是window,在Node中全局对象是global

    // 简单兼容浏览器和 NodeJs 的全局对象
    const _global=typeof window==="undefined"?global:window;
    function test() {
        console.log(this===_global); // true
    }
    test();    // 直接调用
    

    这里需要注意的一点是,直接调用并不是指在全局作用域下进行调用,在任何作用域下,直接通过 函数名(...) 来对函数进行调用的方式,都称为直接调用。

    (function(_global) {
        // 通过 IIFE 限定作用域
        function test() {
            console.log(this === _global);  // true
        }
        test();     // 非全局作用域下的直接调用
    })(typeof window === "undefined" ? global : window);
    

    bind()对直接调用的影响

    Function.prototype.bind()的作用是将当前函数与指定的对象绑定,并返回一个新函数,这个新函数无论以什么样的方式调用,其this始终指向绑定的对象。

    const obj = {};
    function test() {
        console.log(this === obj);
    }
    const testObj = test.bind(obj);
    test(); // false
    testObj();  // true
    

    那么bind()干了啥?

    const obj = {};
    function test() {
        console.log(this === obj);
    }
    // 自定义的函数,模拟bind()对this的影响
    function myBind(func, target) {
        return function() {
            return func.apply(target, arguments);
        };
    }
    const testObj = myBind(test, obj);
    test();     // false
    testObj();  // true
    

    从上面的示例可以看到,首先,通过闭包,保持了target,即绑定的对象;然后在调用函数的时候,对原函数使用了apply方法来指定函数的this。当然原生的bind()实现可能会不同,而且更高效。但这个示例说明了bind()的可行性。

    call和apply对this的影响

    Function.prototype.apply()Function.prototype.call()这两方法的第一个参数都是指定函数运行时其中的this指向。
    不过使用applycall的时候仍然需要注意,如果目录函数本身是一个绑定了this对象的函数,那applycall不会像预期那样执行。

    const obj = {};
    function test() {
        console.log(this === obj);
    }
    // 绑定到一个新对象,而不是 obj
    const testObj = test.bind({});
    test.apply(obj);    // true
    // 期望 this 是 obj,即输出 true
    // 但是因为testObj绑定了不是obj的对象,所以会输出false
    testObj.apply(obj); // false
    

    方法调用

    方法调用是指通过对象来调用其方法函数,它是对象.方法函数(...) 这样的调用形式。这种情况下,函数中的this指向调用该方法的对象。但是,同样需要注意bind()的影响。

    const obj = {
        // 第一种方式,定义对象的时候定义其方法
        test() {
            console.log(this === obj);
        }
    };
    // 第二种方式,对象定义好之后为其附加一个方法(函数表达式)
    obj.test2 = function() {
        console.log(this === obj);
    };
    // 第三种方式和第二种方式原理相同
    // 是对象定义好之后为其附加一个方法(函数定义)
    function t() {
        console.log(this === obj);
    }
    obj.test3 = t;
    // 这也是为对象附加一个方法函数
    // 但是这个函数绑定了一个不是 obj 的其它对象
    obj.test4 = (function() {
        console.log(this === obj);
    }).bind({});
    obj.test();     // true
    obj.test2();    // true
    obj.test3();    // true
    // 受 bind() 影响,test4 中的 this 指向不是 obj
    obj.test4();    // false
    

    方法中this指向全局对象的情况

    注意这里说的是方法中而不是方法调用中。方法中的this指向全局对象,如果不是因为bind(),那就一定是因为不是用的方法调用方式。

    const obj = {
        test() {
            console.log(this === obj);
        }
    };
    const t = obj.test;
    t();    // false
    

    t就是objtest方法,但是t()调用时,其中的this指向了全局。
    之所以要特别提出这种情况,主要是因为常常将一个对象方法作为回调传递给某个函数之后,却发现运行结果与预期不符——因为忽略了调用方式对this的影响。比如下面的例子是在页面中对某些事情进行封装之后特别容易遇到的问题:

    class Handlers {
        // 这里 $button 假设是一个指向某个按钮的 jQuery 对象
        constructor(data, $button) {
            this.data = data;
            $button.on("click", this.onButtonClick);
        }
        onButtonClick(e) {
            console.log(this.data);
        }
    }
    const handlers = new Handlers("string data", $("#someButton"));
    // 对 #someButton 进行点击操作之后
    // 输出 undefined
    // 但预期是输出 string data
    

    很显然this.onButtonClick作为一个参数传入on()之后,事件触发时,是对这个函数进行的直接调用,而不是方法调用,所以其中的this会指向全局对象。要解决这个问题有很多种方法。

    // 这是在 es5 中的解决办法之一
    var _this = this;
    $button.on("click", function() {
        _this.onButtonClick();
    });
    // 也可以通过 bind() 来解决
    $button.on("click", this.onButtonClick.bind(this));
    // es6 中可以通过箭头函数来处理,在 jQuery 中慎用
    $button.on("click", e => this.onButtonClick(e));
    

    不过请注意,将箭头函数用作jQuery的回调时造成要小心函数内对this的使用。jQuery大多数回调函数(非箭头函数)中的this都是表示调用目标,所以可以写$(this).text()这样的语句,但jQuery无法改变箭头函数的this指向,同样的语句语义完全不同。

    new调用

    在ES6之前,每一个函数都可以当作是构造函数,通过new调用来产生新的对象(函数内无特定返回值的情况下)。而ES6改变了这种状态,虽然class定义的类用typeof运算符得到的仍然是"function",但它不能像普通函数一样直接调用;同时,class中定义的方法函数,也不能当作构造函数用new来调用。
    而在ES5中,用new调用一个构造函数,会创建一个新对象,而其中的this就指向这个新对象。这没有什么悬念,因为new本身就是设计来创建新对象的。

    var data = "Hi";    // 全局变量
    function AClass(data) {
        this.data = data;
    }
    var a = new AClass("Hello World");
    console.log(a.data);    // Hello World
    console.log(data);      // Hi
    var b = new AClass("Hello World");
    console.log(a === b);   // false
    

    箭头函数中的this

    箭头函数没有自己的this绑定。箭头函数中使用的this,其实是直接包含它的那个函数或函数表达式中的 this

    const obj = {
        test() {
            const arrow = () => {
                // 这里的 this 是 test() 中的 this,
                // 由 test() 的调用方式决定
                console.log(this === obj);
            };
            arrow();
        },
        getArrow() {
            return () => {
                // 这里的 this 是 getArrow() 中的 this,
                // 由 getArrow() 的调用方式决定
                console.log(this === obj);
            };
        }
    };
    obj.test();     // true
    const arrow = obj.getArrow();
    arrow();        // true
    

    示例中的两个this都是由箭头函数的直接外层函数(方法)决定的,而方法函数中的this是由其调用方式决定的。上例的调用方式都是方法调用,所以this都指向方法调用的对象,即obj
    箭头函数让大家在使用闭包的时候不需要太纠结this,不需要通过像_this这样的局部变量来临时引用this给闭包函数使用。来看一段Babel对箭头函数的转译可能能加深理解。

    // ES6
    const obj = {
        getArrow() {
            return () => {
                console.log(this === obj);
            };
        }
    }    
    // ES5,由 Babel 转译
    var obj = {
        getArrow: function getArrow() {
            var _this = this;
            return function () {
                console.log(_this === obj);
            };
        }
    };
    

    另外需要注意的是,箭头函数不能用new调用,不能bind()到某个对象(虽然bind()方法调用没问题,但是不会产生预期效果)。不管在什么情况下使用箭头函数,它本身是没有绑定this的,它用的是直接外层函数(即包含它的最近的一层函数或函数表达式)绑定的this

    相关文章

      网友评论

          本文标题:JavaScript this

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