我在vue中封装了一个节流,使用时直接传递需要调用的方法过去,节流功能可以实现,但我在网上看到别人写的节流发现他们都在函数中使用了apply来调用,并且改变了this指向,让我很不解,请大佬为我解惑
//节流
export function throttle(callback, wait = 50) {
let timer = null
let flag = true
return function () {
if (flag) {
timer = setTimeout(() => {
callback()
flag = true
clearTimeout(timer)
timer = null
}, wait)
}
flag = false
}
}
在使用的地方
methods: {
resize() { //这个resize是我自己写的方法
this.$refs.alarmNumberBox.initWH();
this.$refs.alarmTrendBox.initWH();
this.$refs.currentQuantityBox.initWH();
this.$refs.alarmNumber.screenAdapter();
this.$refs.alarmTrend.screenAdapter();
this.$refs.alarmToday.screenAdapter();
}
},
绑定节流处
activated() {
//保存函数
const resize = throttle(this.resize, 50);
//挂载
window.addEventListener("resize", resize);
},
我这种写法经测试不需要apply来改变this,可以实现功能,但总感觉哪里不太好,大佬有空的话,请帮我看看
别人写的是通用的,比如原本的代码是:
有一天老板突然说要加个节流,别人引入
throttle
函数把它包装一下就能搞定:试想一下,假如你写的不是一个只需注册一次的函数,而是需要在很多地方调用,你是不是要在这些调用的地方一个个去节流(而别人仅仅是在定义函数的地方节流)?