前段時(shí)間封裝了一個(gè)函數(shù),當(dāng)時(shí)考慮的沒(méi)那么多,最近回頭看這個(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é)果為
創(chuàng)新互聯(lián)公司專注于建甌企業(yè)網(wǎng)站建設(shè),響應(yīng)式網(wǎng)站設(shè)計(jì),商城網(wǎng)站建設(shè)。建甌網(wǎng)站建設(shè)公司,為建甌等地區(qū)提供建站服務(wù)。全流程按需規(guī)劃網(wǎng)站,專業(yè)設(shè)計(jì),全程項(xiàng)目跟蹤,創(chuàng)新互聯(lián)公司專業(yè)和態(tài)度為您提供的服務(wù)
從上述結(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)。