1 回答
TA贡献1866条经验 获得超5个赞
在 keyup 上发送 ajax 请求并不是很聪明。为什么?因为我可以向键盘发送 1000 次垃圾邮件,它会发送 1000 个请求。您可能想要做的是在用户完成输入后发送请求。
var typingTimer;
var doneTypingInterval = 1000; // Trigger the request 1 second/1000 ms after user done typing.
var input = $('#input'); // Your input
input.on('keyup', function () {
clearTimeout(typingTimer);
typingTimer = setTimeout(doneTyping, doneTypingInterval);
});
input.on('keydown', function () {
clearTimeout(typingTimer);
});
// user is done, send ajax request.
function doneTyping () {
let searchValue = $('#input').val();
if(searchValue !== ''){
$.ajax({
type: 'GET',
url: '../controller/searchItem.php',
data: 'data=' + encodeURIComponent(searchValue),
success: function(data){
if(data !== ""){
$('#results').append(data);
}else{
document.getElementById('results').innerHTML = "<div style='font-size: 20px; text-align: center; margin-top: 10px'><p>Oups, ce que vous cherchez n'existe pas encore !</p></div>";
}
}
})
}
}
添加回答
举报