美文网首页
迷一样的 this

迷一样的 this

作者: lesliefang | 来源:发表于2017-03-02 11:41 被阅读34次

各种 this 常常令人非常迷惑,至今只能理解简单的情况,对于复杂的情况 this 传来传去,绑来绑去。。。还是会晕,不能透彻的理解。

this is neither a reference to the function itself, nor is it a reference to the function's lexical scope.
this is actually a binding that is made when a function is invoked, and what it references is determined entirely by the call-site where the function is called.

this 既不指向函数,也不指向函数的 scope, 而是在函数执行时动态绑定到所处的上下文。

this 到底绑定到什么,有 4 种基本的情况:

Default Binding

function foo() {
    console.log( this.a );
}

var a = 2;

foo(); // 2

this 默认会绑定到 global 对象

function foo() {
    "use strict";

    console.log( this.a );
}

var a = 2;

foo(); // TypeError: `this` is `undefined`

只有在非严格模式下才允许 this 绑定到 global, 严格模式下不允许绑定到 global

Implicit Binding 隐式绑定

function foo() {
    console.log( this.a );
}

var obj = {
    a: 2,
    foo: foo
};

obj.foo(); // 2

用一个对象 obj 去调用函数,这时 this 就绑定到函数所在的对象

Explicit Binding 显示绑定

function foo() {
    console.log( this.a );
}

var obj = {
    a: 2
};

foo.call( obj ); // 2

通过 call 或 apply 显示调用一个函数并传递一个对象进去,这时 this 就绑定到传入的对象上。这种情况最好理解。

new Binding

function foo(a) {
    this.a = a;
}

var bar = new foo( 2 );
console.log( bar.a ); // 2

当用 new 调用一个函数时主要做了下面4件事

  1. a brand new object is created
  2. the newly constructed object is [[Prototype]]-linked
  3. the newly constructed object is set as the this binding for that function call
  4. unless the function returns its own alternate object, the new-invoked function call will automatically return the newly constructed object.

当用 new 调用一个函数时,底层默认会新建一个对象,this 会绑定到这个新建的对象上。默认函数会返回这个新建的对象,当然也可以返回其它的对象。

Determining the this binding for an executing function requires finding the direct call-site of that function. Once examined, four rules can be applied to the call-site, in this order of precedence:

  1. Called with new? Use the newly constructed object.

  2. Called with call or apply (or bind)? Use the specified object.

  3. Called with a context object owning the call? Use that context object.

  4. Default: undefined in strict mode, global object otherwise.

总结下来就是找到函数调用点,依次看看是否符合以上 4 条规则

  1. 如果用 new 调用, this 绑定到函数新建的对象上
  2. 显示调用直接绑定到传入的对象上
  3. 通过对象调用,绑定到函数所在的对象上
  4. 默认绑定到 global 对象

Lexical this

function foo() {
    // return an arrow function
    return () => {
        // `this` here is lexically adopted from `foo()`
        console.log( this.a );
    };
}
var obj1 = {
    a:100
};
var a = 200;
foo.call(obj1)(); // 100

arrow-functions adopt the this binding from the enclosing (function or global) scope.

ES6 的 => 函数中的 this 会绑定到它所在的 scope 的 this。这里就是 foo 的 this。

相关文章

  • 这个迷那个迷,迷一样的生活,迷一样的事情,迷一样的每个人。迷一样的办公环境。好像冥冥之中自有安排,又好像一切跟每个...

  • 迷一样的 this

    各种 this 常常令人非常迷惑,至今只能理解简单的情况,对于复杂的情况 this 传来传去,绑来绑去。。。还是会...

  • 迷一样的男人,迷一样的来去人世间,却留下无数传说

    最近迷上了一个人,怎么说呢,我来形容一下他,看看谁认识他。 他像一个迷,迷一样的出现,迷一样的感情,迷一样的在人生...

  • 迷雾重重

    迷一样的风, 迷一样的雾气中, 缓缓走来一位迷一样的女子。 明明离得很近, 可是却冷若冰霜, 心里的冰点无限被放大...

  • 迷一样的往事

    看着外面阴沉的天气,胡特警官不由得皱了皱眉头。每年的这个时节,梅雨就没有间断光顾这座南方小城。三月天,加上不...

  • 迷一样的青春

    不知不觉,大一的生活已过了3/4,但却依然没有找到自己生活的目标,对未来的定位依然很迷茫,虽然很想改变现状却不知...

  • 迷一样的房价!

    5年前的深圳80~200万买3房,200~500万买豪宅别墅!现在...买不起买不起! 卖地的是政府,拿地的是央企...

  • 迷一样的小梁

    下课的钟声敲响 欢腾的操场 飞一般跑出教室的 是还没断奶的小梁 他爬过荆棘围堵的矮墙 消失在灯红酒绿的街巷 在挂满...

  • 迷一样的女人

    永远不要问女人 为什么生气 为什么开心 为什么哭 为什么笑 因为这一切都是莫名其妙的 突然涌上心头的 是霎那间的颤...

  • 迷一样的女孩

    请朋友唱歌,就叫她小Z吧,她男朋友是我同学。她一个同事也在我们隔壁包厢唱歌,中途过去敬了一杯酒,然后坐了坐,觉得挺...

网友评论

      本文标题:迷一样的 this

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