var name = "window.name"; var o = { name:'o.name', fn:function () { return this.oo.oofun() }, fnn:()=>{ return this.name }, oo:{ name:'oo.name', oofun:()=>{ return this.name }, oofun2:()=>{ this.name='oofun2.name'; return this.name } } };
var cc = {name:'cc.name'};
console.log( o.fn(), o.fnn(), o.fnn.apply(cc), o.fnn.bind(cc)(), o.oo.oofun(), o.oo.oofun2() );
//window.name window.name window.name window.name window.name oofun2.name 为什么结果这这样的呢
1
autoxbc 2017-10-15 05:10:19 +08:00
|
2
qiuyk 2017-10-15 13:18:03 +08:00
var name = "window.name"; var o = { name:'o.name', fn:function () { return this.oo.oofun() }, fnn:function () { return this.name }, oo:{ name:'oo.name', oofun:function(){ return this.name }, oofun2:function(){ this.name='oofun2.name'; return this.name } } };
var cc = {name:'cc.name'}; console.log( o.fn(), o.fnn(), o.fnn.apply(cc), o.fnn.bind(cc)(), o.oo.oofun(), o.oo.oofun2() ); |
3
Exceptionluo OP |
4
qiuyk 2017-10-18 09:52:34 +08:00
@Exceptionluo 你可以这样理解,function 是会隐性传入 this,箭头函数不会。而 function 的 this 指向他的调用者,你可以调用 call 啊 bind 什么的改变 this 指向,而箭头函数的 this 就是声明的作用域里面 this,call/apply/bind 都忽略,和他调用者没有关系,所以对象方法不要乱用箭头函数
|
5
Exceptionluo OP @qiuyk “ 箭头函数的 this 就是声明的作用域里面 this ” 这里的声明作用域可以理解为是箭头函数内部么? 箭头函数也是匿名函数? 返回的匿名函数在 window 下执行所以获取到的是全局属性? 对于箭头函数 call/apply/bind 都是无效的?
可以这么理解么 |
6
qiuyk 2017-10-18 17:04:14 +08:00
@Exceptionluo 是指箭头函数声明时所处的作用域,以你这个为例,箭头函数就处在全局作用域了,this 就指向 window 了;是匿名函数;箭头函数在哪执行和结果没有关系;是的。
|
7
Exceptionluo OP @qiuyk 这次真懂啦 Thanks♪(・ω・)ノ
|