方法中的函数会掩盖this,解决办法!

要知道在javascript中this是种很神奇的东西,但是有时候也很淘气;

如下:

<script>
    var obj = {
        name: 'tqt',
        friends: ['shangs', 'lisi'],
        sayHello: function() {
            this.friends.forEach(function(friend){
                console.log(this.name + ' say hello to ' + friend);
            });
        },
    }
    obj.sayHello();
    //say hello to shangs
    //say hello to lisi
</script>

此时this已经不再指向obj了所以不会有name属性;(this现在指向window,太淘气了!)

对于这种情况解决办法如下:

方法一: 

<script>
    var obj = {
        name: 'tqt',
        friends: ['shangs', 'lisi'],
        sayHello: function() {
            var that = this;
            this.friends.forEach(function(friend){
                console.log(that.name + ' say hello to ' + friend);
            });
        },
    }
    obj.sayHello();
    //tqt say hello to shangs
    //tqt say hello to lisi
</script>

方法二:

<script>
    var obj = {
        name: 'tqt',
        friends: ['shangs', 'lisi'],
        sayHello: function() {
            this.friends.forEach(function(friend){
                console.log(this.name + ' say hello to ' + friend);
            }.bind(this));
        },
    }
    obj.sayHello();
    //tqt say hello to shangs
    //tqt say hello to lisi
</script>

方法三:

<script>
    var obj = {
        name: 'tqt',
        friends: ['shangs', 'lisi'],
        sayHello: function() {
            this.friends.forEach(function(friend){
                console.log(this.name + ' say hello to ' + friend);
            }, this);
        },
    }
    obj.sayHello();
    //tqt say hello to shangs
    //tqt say hello to lisi
</script>

 

转载于:https://www.cnblogs.com/tqt--0812/p/6880491.html

评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

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

抵扣说明:

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

余额充值