溫馨提示×

您好,登錄后才能下訂單哦!

密碼登錄×
登錄注冊(cè)×
其他方式登錄
點(diǎn)擊 登錄注冊(cè) 即表示同意《億速云用戶服務(wù)條款》

javascript防止變量全局污染

發(fā)布時(shí)間:2020-08-02 18:47:12 來源:網(wǎng)絡(luò) 閱讀:964 作者:janwool 欄目:web開發(fā)
    前段時(shí)間封裝了一個(gè)函數(shù),當(dāng)時(shí)考慮的沒那么多,最近回頭看這個(gè)封裝的函數(shù)時(shí)發(fā)現(xiàn)其實(shí)造成了全局污染。原先的函數(shù)是這樣的:
function interval(fn, ms){
    !this.fn?(this.fn = fn,this.ms = ms,this.step = 0):null
    this.step++
    this.step%(this.ms * 60) == 0?this.fn():null
    requestAnimationFrame(interval)
}
interval(() => {
    console.log(1)
},1)
console.log(fn)

上述代碼模擬了setInterval方法,輸出結(jié)果為
javascript防止變量全局污染

從上述結(jié)果看便可知道window增加了fn變量,原因也很簡(jiǎn)單,我們調(diào)用interval函數(shù)而非new時(shí),函數(shù)中的this指向的是window,所以修改思路也很簡(jiǎn)單,代碼如下:

function interval(fn, ms){
    function temp (){
        !this.fn?(this.fn = fn,this.ms = ms,this.step = 0):null
        this.step++
        this.step%(this.ms * 60) == 0?this.fn():null
        requestAnimationFrame(temp)
    }
    new temp()
}
interval(() => {
    console.log(1)
},1)
console.log(temp)   //報(bào)錯(cuò),未定義temp
console.log(fn)     //報(bào)錯(cuò),未定義fn

我的解決思路就是將所有的變量限制在interval函數(shù)內(nèi)。

向AI問一下細(xì)節(jié)

免責(zé)聲明:本站發(fā)布的內(nèi)容(圖片、視頻和文字)以原創(chuàng)、轉(zhuǎn)載和分享為主,文章觀點(diǎn)不代表本網(wǎng)站立場(chǎng),如果涉及侵權(quán)請(qǐng)聯(lián)系站長(zhǎng)郵箱:is@yisu.com進(jìn)行舉報(bào),并提供相關(guān)證據(jù),一經(jīng)查實(shí),將立刻刪除涉嫌侵權(quán)內(nèi)容。

AI