es6 的arrow function


arrow function的简写方法正在学习中.......

class Animal { constructor(){ this.type = 'animal' } says(say){ setTimeout(function(){ console.log(this.type + ' says ' + say)//这里是this指代的是全局对象,而不是在构造方法里面的this指代的animal对象, 在构造方法之外的this代表的都是全局对象,可以共享的。 }, 1000) } } var animal = new Animal() animal.says('hi') //undefined says hi 所以上面的报错解决方法有两种: 第一种是将this传给self,再用self来指代this
   says(say){
       var self = this;
       setTimeout(function(){
           console.log(self.type + ' says ' + say)
       }, 1000)

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

   says(say){
       setTimeout(function(){
           console.log(this.type + ' says ' + say)
       }.bind(this), 1000)
这时候bind后面的this,代表的就是构造方法里面的this实例对象  ,也就是animal

返回的结果:

 

评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

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

抵扣说明:

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

余额充值