Stabilization
On the web application
At the beginning, click the button, <body> <button id="btn">click</button> </body> <script> const btn = document.getElementById('btn') function payMoney() { console.log('pay money'); } btn.addEventListener('click', payMoney) </script> Defining debounce const btn = document.getElementById('btn') function payMoney() { console.log('pay money'); } function debounce(func) { // Return the function in the function, only return the function when clicked return function () { func() } } btn.addEventListener('click', debounce(payMoney)) Setting the delay const btn = document.getElementById('btn') function payMoney() { console.log('pay money'); } function debounce(func, delay) { return function () { setTimeout(_ => func(), delay) } } btn.addEventListener('click', debounce(payMoney, 1000)) Clear Delay: Failed to execute reason Every time you click, the contents of the return function will be executed The execution function of each click is independent and does not interfere with each other. Because there is no connection between them, the clearing delay does not work here at all To connect these independent execution functions, we need to use scope chains (closures) const btn = document.getElementById('btn') function payMoney() { console.log('pay money'); } function debounce(func, delay) { return function () { let timer clearInterval(timer) timer = setTimeout(_ => func(), delay) } } btn.addEventListener('click', debounce(payMoney, 1000)) Put the timer outside the return function, so that Because of the scope chain, all independent execution functions can access this timer variable. And now this timer variable is only created once. It is unique. We just keep assigning values to the timer to delay it. Each clear delay clears the last defined delay, which is equivalent to multiple functions sharing the same external variable. const btn = document.getElementById('btn') function payMoney() { console.log('pay money'); } function debounce(func, delay) { let timer return function () { clearInterval(timer) timer = setTimeout(_ => func(), delay) } } btn.addEventListener('click', debounce(payMoney, 1000)) In this code, this refers to window? Because of the callback, the runtime is already under Window const btn = document.getElementById('btn') function payMoney() { console.log('pay money'); console.log(this); } function debounce(func, delay) { let timer return function () { clearInterval(timer) timer = setTimeout(_ => func(), delay) } } btn.addEventListener('click', debounce(payMoney, 1000)) Solution Save this before setTimeout. This time this points to the button. const btn = document.getElementById('btn') function payMoney() { console.log('pay money'); console.log(this); } function debounce(func, delay) { let timer // This function is returned only when clicked, so this is the return function () pointing to the button { let context = this clearInterval(timer) timer = setTimeout(_ => { func.apply(context) }, delay) } } btn.addEventListener('click', debounce(payMoney, 1000)) Consider the parameter problem and add arg const btn = document.getElementById('btn') function payMoney() { console.log('pay money'); console.log(this); } function debounce(func, delay) { let timer return function () { let context = this let args = arguments clearInterval(timer) timer = setTimeout(_ => { func.apply(context) console.log(context, args); }, delay) } } btn.addEventListener('click', debounce(payMoney, 1000)) Throttling
Scrolling screen: Count the user's scrolling behavior to make corresponding web page responses When users keep scrolling, requests will continue to be generated , and the number of requests will continue to increase, which can easily lead to network congestion. We can execute the task immediately when the event is triggered , and then set a time interval limit . During this time, no matter how the user scrolls, the operation will be ignored. After the time is up, if the user is detected to have scrolling behavior, the task will be executed again. And set the time interval First, write a code that changes the page size and the background color of the page function coloring() { let r = Math.floor(Math.random() * 255) let g = Math.floor(Math.random() * 255) let b = Math.floor(Math.random() * 255) document.body.style.background = `rgb(${r}, ${g}, ${b})` } window.addEventListener('resize', coloring) function throttle(func, delay) { let timer return function () { timer = setTimeout(_ => { func() }, delay) } } window.addEventListener('resize', throttle(coloring, 2000)) Determine whether the triggered event is within the time interval
function throttle(func, delay) { let timer return function () { // timer is assigned a value, return directly, that is, do not execute the task if (timer) { return } // At this time, the timer has not been assigned a value, or the timer has been executed // Assign a value to the timer for delayed execution timer = setTimeout(_ => { func() // After the delay execution, we need to clear the value of timer timer = null }, delay) } } window.addEventListener('resize', throttle(coloring, 2000)) Solve this point (although the current example is under Window) function throttle(func, delay) { let timer return function () { let context = this let args = arguments // timer is assigned a value, return directly, that is, do not execute the task if (timer) { return } // At this time, the timer has not been assigned a value, or the timer has been executed // Assign a value to the timer for delayed execution timer = setTimeout(_ => { func.apply(context, args) // After the delay execution, we need to clear the value of timer timer = null }, delay) } } window.addEventListener('resize', throttle(coloring, 1000)) Throttling core: event interval Another common time interval is to use the Date object function throttle(func, delay) { // We need to compare with the previous time point to determine whether the time interval has passed // Outside the return function to avoid automatic modification every time it is executed let pre = 0 return function () { // Save the time when the function is executed let now = new Date() // At the beginning, it will definitely execute if (now - pre > delay) { // The time interval has passed, and the function can be executed func() // After execution, reset the interval point pre = now } } } window.addEventListener('resize', throttle(coloring, 1000)) Solving parameter problems function throttle(func, delay) { let pre = 0 return function () { let context = this let args = arguments let now = new Date() if (now - pre > delay) { func.apply(context, args) pre = now } } } window.addEventListener('resize', throttle(coloring, 1000)) SummarizeThis article ends here. I hope it can be helpful to you. I also hope that you can pay more attention to more content on 123WORDPRESS.COM! You may also be interested in:
|
<<: The process of building a Jenkins project under Linux (taking CentOS 7 as an example)
>>: MySQL learning record: bloody incident caused by KEY partition
<br />The official version of Baidu Encyclop...
Written in front: Sometimes you may need to view ...
1. Discover the problem © is the copyrigh...
need: Implement dynamic display of option values ...
Find the running container id docker ps Find the ...
Business scenario: querying tables in different d...
Import and export of Docker images This article i...
When developing a backend management project, it ...
Carousel The main idea is: In the large container...
What I have been learning recently involves knowl...
This article shares the specific code of JavaScri...
MySQL uses triggers to solve the row limit of the...
Table of contents Preface Configure yum source, e...
1. What is We can split the communication between...
Table of contents Manual deployment 1. Create a s...