我试图通过Ajax提交表单,但它没有用,但是 当我删除弹簧标签库比它工作正常..
所以我想知道为什么Rest Api不支持spring标签库
这是提交表单的ajax代码
$("#change-password-by-otp").submit(function(event) {
console.log("submitting user reset password form");
event.preventDefault();
var email="${emailFromUser}";
console.log("hey hi--->"+email)
$('.error-message').empty();
$.ajax({
type : $(this).attr('method'),
url : $(this).attr('action'),
data : $(this).serialize(),
success :function(response, headers, HttpStatus) {
if(response.validated){
$('.center-content').html('<h5 class="text-success">password is changed</h5>')
}else{
$.each(response.errorsMap,function(key,value){
$('.error-messages').append('<span class="passworderror">'+value+'</span>'+
'<span class="glyphicon glyphicon-remove-sign" id= "remove-password"></span>');
});
}
},
error : function(error){
console.log("error===>"+error)
}
});
});
});