javascript - vue.js怎麼setInterval定時呼叫方法
巴扎黑
巴扎黑 2017-05-19 10:31:53
0
2
567
methods: {
    A: function() {
        setInterval(function(){ 
            this.B();
        },500)
    },
    B: function() {
        console.log('func B')
    }
}

這樣寫會報錯,要怎麼達到這樣的效果呢?

巴扎黑
巴扎黑

全部回覆(2)
淡淡烟草味

可以使用箭頭函數

methods: {
    A: function() {
        setInterval(() => { 
            this.B();
        }, 500)
    },
    B: function() {
        console.log('func B')
    }
}

methods: {
    A: function() {
        setInterval(this.B, 500)
    },
    B: function() {
        console.log('func B')
    }
}
阿神

雷雷

熱門教學
更多>
最新下載
更多>
網站特效
網站源碼
網站素材
前端模板