您好,登录后才能下订单哦!
密码登录
登录注册
点击 登录注册 即表示同意《亿速云用户服务条款》
前段时间封装了一个函数,当时考虑的没那么多,最近回头看这个封装的函数时发现其实造成了全局污染。原先的函数是这样的:
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方法,输出结果为
从上述结果看便可知道window增加了fn变量,原因也很简单,我们调用interval函数而非new时,函数中的this指向的是window,所以修改思路也很简单,代码如下:
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) //报错,未定义temp
console.log(fn) //报错,未定义fn
我的解决思路就是将所有的变量限制在interval函数内。
免责声明:本站发布的内容(图片、视频和文字)以原创、转载和分享为主,文章观点不代表本网站立场,如果涉及侵权请联系站长邮箱:is@yisu.com进行举报,并提供相关证据,一经查实,将立刻删除涉嫌侵权内容。