<script>
$("#updateBasicBtn").on("click", function(){
$.ajax({
type: "POST",
url : "/cnpt/updateBasic",
data : $("#updateBasicFrm").serialize(),
contentType : "application/x-www-form-urlencoded; charset=utf-8",
dataType : "json",
success : function(data){
console.log("data뭐노?" + data);
var res = parseInt(data);
if(res > 0){
Swal.fire({
icon:'success',
title:'성공데스까',
}).then(function(){
window.location.reload();
})
}else{
alert("업뎃안됨 와이라노");
}
},
error : function(){
Swal.fire({
icon:'error',
title:'에러데스까',
}, function(){
window.location.reload();
});
}
});
});
</script>
기본 포맷
<script>
$.ajax({
type: "POST",
url : "Controller 경로",
data : $("#가져올 Form객체의 ID").serialize(),
contentType : "application/x-www-form-urlencoded; charset=utf-8",
dataType : "json",
success : function(data){
성공했을 때 코드
},
error : function(){
}
});
</script>