使用window.addEventListener('scroll', this.handleScroll);滑动到底部后,不断滑动页面,页面会暂时停在那里,等不滑动以后过一会才会继续加载出来
通过调试发现,滑动到底部的时候,一直滑动接口数据不会返回,等到不滑动了,接口数据才会返回打印出来
节流
var timer = 0;
window.addEventListener('scroll', () => {
if (!timer) {
timer = setTimeout(() => {
this.handleScroll()
timer = 0
}, 250)
}
})