40. 회원가입 하기 Ajax 요청
by 볼빵빵오춘기user.js
ajax 부분 완성시킨다.
let index = {
init:function(){
$("#btn-save").on("click",()=>{ // function(){} 대신 ()=> 사용한 이유는 this를 바인딩하기 위해서
this.save();
});
},
save: function(){
// alert('user의 save호출됨');
let data = {
username: $("#username").val(),
password: $("#password").val(),
email: $("#email").val()
}
// console.log(data);
$.ajax({
type: "POST",
url: "/api/user",
data: JSON.stringify(data),
contentType: "application/json; charset=utf-8",
dataType: "json"
}).done(function(resp){
alert("회원가입이 완료 되었습니다.")
location.href="/";
}).fail(function(error){
alert(JSON.stringify(error));
});
},// save end
}// index end
index.init();
UserApiController
@RestController
public class UserApiController {
@PostMapping("/api/user")
public int save(@RequestBody User user){
System.out.println("UserApiController save() 호출");
return 1;
}
}
ResponseDto
@Data
@NoArgsConstructor
@AllArgsConstructor
@Builder
public class ResponseDto <T>{
int status;
T data;
}
UserApiController
@RestController
public class UserApiController {
@PostMapping("/api/user")
public ResponseDto<Integer> save(@RequestBody User user){
System.out.println("UserApiController save() 호출");
return new ResponseDto<Integer>(HttpStatus.OK.value(),1);
}
}
'강의 따라하기 > blog' 카테고리의 다른 글
42. ResponseDto 수정 (0) | 2024.01.02 |
---|---|
41. 회원가입 하기 두번째 완료 (0) | 2024.01.02 |
38,39 Ajax를 사용하는 이유 첫번째, 두번째 (0) | 2024.01.02 |
37. 회원가입을 위한 기초세팅 (0) | 2024.01.02 |
36. 로그인, 회원가입 화면 만들기 (0) | 2024.01.02 |
블로그의 정보
Hello 춘기's world
볼빵빵오춘기