您需要对案例进行并发检查。在你的blur行动;检查并设置一个值以防止重新进入其他呼叫。
也在ajax请求期间,您需要防止单击按钮。
还有一件事,如果在您的输入字段模糊之后,用户会重新聚焦并重新聚焦输入内容?在这种情况下,你的动作将被触发两次。
因此,您需要处理并发性。也有一些JavaScript库来处理并发,你可以使用它们或由你自己处理。
反正来处理你的情况,这里是一个示例代码:
let hasCall = false;
$("#input_field1").on('blur', function() {
if(hasCall){
return; //there is an active call...
}else{
hasCall = true;
$("#button1").prop('disabled', true);//prevent clicking on button
}
$.ajax({
//async:false,
method: "GET",
url: "my_ajax.php",
cache: false,
dataType: "json",
data: { data1: $("#input_field1").val()},
success: function(result){
$("#some_other_input").val(result.data2);
}
}).always(()=>{
//reset the state:
hasCall=false;
$("#button1").prop('disabled', false);
});
});
$("#button1").on('click', function() {
$("#input_field1").attr("readonly", true);
var form = $("#my_form");
form.validate().resetForm();
form[0].reset();//form contains #some_other_input
});