[Javascript] 사용자가 타이핑을 쉬는 시간에 DB에 저장하기
2020. 10. 27. 00:12ㆍ실전
var timeoutId;
$('#the-textarea').on('input propertychange change', function() {
console.log('Textarea Change');
clearTimeout(timeoutId);
timeoutId = setTimeout(function() {
// Runs 1 second (1000 ms) after the last change
saveToDB();
}, 1000);
});
function saveToDB()
{
console.log('Saving to the db');
}
stackoverflow.com/questions/19910843/autosave-input-boxs-to-database-during-pause-in-typing
'실전' 카테고리의 다른 글
CSRF 적용된 Django 서버에 axios 이용하여 POST 요청하기 (0) | 2020.11.04 |
---|---|
mss 초고속 파이썬 스크린샷 모듈 (0) | 2020.11.04 |
ubuntu에 xrdp 기반으로 원격접속하기 (0) | 2019.12.20 |
우분투에 크롬과 크롬드라이버 설치 (0) | 2019.12.20 |
우분투 위에 '프록시 서버 구축'하기 #Squid #Proxy (0) | 2019.11.03 |