dev.Log
Debouncing ๊ณผ Throttling ๋ณธ๋ฌธ
๐Debounding : ์ฐ์ด์ด ํธ์ถ๋๋ ํจ์๋ค ์ค ๋ง์ง๋ง ํจ์๋ง ํธ์ถํ๋๋ก ํ๋ ๊ฒ
-> ajax ๊ฒ์์ ์ฃผ๋ก ์ฌ์ฉ
var timer;
document.querySelector('#input').addEventListener('input', function(e) {
if(timer) {
clearTimeout(timer);
}
timer = setTimeout(function() {
$.ajax์์ฒญ
}, 200 );
});
๐Throttling : ๋ง์ง๋ง ํจ์๊ฐ ํธ์ถ๋ ํ ์ผ์ ์๊ฐ์ด ์ง๋๊ธฐ ์ ์ ๋ค์ ํธ์ถ๋์ง ์๋๋ก ํ๋ ๊ฒ
-> ์คํฌ๋กค์ ์ฃผ๋ก ์ฌ์ฉ
var timer;
document.querySelector('#input').addEventListener('input', function(e) {
if(!timer) {
timer = setTimeout(function() {
timer = null;
$.ajax์์ฒญ
}, 200);
}
}
'<FRONTEND>' ์นดํ ๊ณ ๋ฆฌ์ ๋ค๋ฅธ ๊ธ
๋ฐฐ์ด์ ์ํ (0) | 2022.12.17 |
---|---|
immutable(๋ถ๋ณ) array (0) | 2022.12.17 |
์น ์ฑ๋ฅ ๊ฐ์ ํ๊ธฐ (0) | 2022.09.30 |
๋ฐ์ํ ํ๋ก๊ทธ๋๋ฐ (0) | 2021.12.06 |
MIME ํ์ ์ด๋ (0) | 2020.07.20 |
Comments