如题,效果已经实现了,但是不太流畅,使用 lodash 的 throttle 和 debounce 函数来节流,但反应
总是不太及时,没有大众点评那样的效果,有什么特别技巧呢?
this.scrollHandler = throttle(({ mp: { detail: { scrollTop } } }) => {
if (storage.length === 0 && !storage.isGetting) {
this.collectContentHeight();
}
if (helpParams.isScrolling) {
return;
}
this.contentScroll = scrollTop;
this.judge(scrollTop);
}, 50);