#2 of Basic Concepts of Infra - URL, Protocol 내부 구성
URL and Inside of Protocol
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 | $("#btnSecondAuthCheck").click(function (e) { e.preventDefault(); $.ajax({ type: "POST", url: "/second-auth/check", dataType: "json", data: JSON.stringify({ secondAuthNumberValue: secondAuthNumberValue }), contentType: "application/json;charset=UTF-8", success: function (response) { // 성공 시 처리 로직 }, error: function (error) { // 실패 시 처리 로직 } }); }) | cs |
댓글
댓글 쓰기