ES6 箭头函数 =>

箭头函数写法:

ES5 函数传统写法: 

function al(x){
    alert(x)}

al("ok")

ES6 使用箭头函数写法:

匿名函数:
()=>"ok" //不带参数.return 被简写。等价于function(){return "ok"}
         //如果函数比较复杂,则外面需要 { } 包裹

(x)=>{alert(x)} //带参数


具名函数:
al=(x) => {alert(x)}

al("ok我是箭头函数") //调用函数


function(i){ return i + 1; } //ES5
(i) => i + 1 //ES6


箭头函数的 this 用法:

用来解决 this 作用域的问题。传统的函数写法,存在this 作用域问题。函数的this 作用域,指向全局 window

class Animal {
    constructor(){
        this.type = 'animal'
}

says(say){
    setTimeout(function(){
        console.log(this.type + ' says ' + say)
        }, 1000)
    }
}

var animal = new Animal()

animal.says('hi') //undefined says hi

运行上面的代码会报错,这是因为setTimeout中的this指向的是全局对象。所以为了让它能够正确的运行,传统的解决方法有两种:

第一种是将this传给self,再用self来指代this

  class Animal {
    constructor(){
      this.type = 'animal'
      self=this //用self 保存当前对象的this
    }
    says(say){
      setTimeout(function(){
        console.log(self.type + ' says ' + say)
      }, 1000)
    }
  }

  var animal = new Animal()

  animal.says("ok")

第二种方法是用bind(this),即

says(say){
    setTimeout(function(){
        console.log(this.type + ' says ' + say)
}.bind(this), 1000)

使用箭头函数解决 this 作用域的问题 

但现在我们有了箭头函数,就不需要这么麻烦了:

class Animal {
    constructor(){
        this.type = 'animal'
    }

says(say){
    setTimeout( () => {
        console.log(this.type + ' says ' + say)
    }, 1000)
    }
}

var animal = new Animal()

animal.says('hi') //animal says hi

当我们使用箭头函数时,函数体内的this对象,就是定义时所在的对象,而不是使用时所在的对象。并不是因为箭头函数内部有绑定this的机制,实际原因是箭头函数根本没有自己的this,它的this是继承外面的,因此内部的this就是外层代码块的this。


PS: 因为对象中的this,指向对象本身;而函数中的this,指向的是全局 window 对象

参考:JS 中的 this 指向 https://blog.csdn.net/weixin_41796631/article/details/89109897

 

  • 0
    点赞
  • 1
    收藏
    觉得还不错? 一键收藏
  • 0
    评论

“相关推荐”对你有帮助么?

  • 非常没帮助
  • 没帮助
  • 一般
  • 有帮助
  • 非常有帮助
提交
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

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

抵扣说明:

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

余额充值