본문 바로가기
Coding/javascript

[JS] jquery $.ajax 간단한 사용 예제

by jamong1014 2023. 12. 15.
반응형
const data = {
		name: 'hello',
		email: 'test@naver.com'
						
						};
							
							
$.ajax ({
							
	type: "POST",
	url: "test.php",
	data: data,
	success: function(data) {
			console.log('send data', data);
		},
								
	error: function(error) {
								
			console.log('send data failed', error);
		}
							
});
  • type: GET, POST 지정
  • url : ajax로 요청할 대상 url 지정
  • async : 동기, 비동기 지정(boolean)
  • dataType : 받아올 데이터의 자료형 지정
  • data : 요청할 때 보낼 데이터 지정
  • success : ajax 요청 성공 시 실행할 이벤트 지정 (function, array)
  • error : ajax 요청 실패 시 실행할 이벤트 지정 (function)
  • complete : ajax 요청 완료 시 실행할 이벤트 지정 (function)
반응형

댓글