Skip to content

Latest commit

 

History

History
17 lines (9 loc) · 508 Bytes

File metadata and controls

17 lines (9 loc) · 508 Bytes

解题思路 or 实现原理

节流

  • Lodash

创建一个节流函数, 在 wait 秒内最多执行func一次的函数。该函数提供一个 cancel 方法取消延迟的函数调用以及 flush方法立即调用。

  • Ours

规定一个时间 wait, wait 秒内,将触发的事件合并为一次并执行。

throttle

参考资料

Debouncing and Throttling Explained Through Examples