반응형
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)
반응형
'Coding > javascript' 카테고리의 다른 글
[JS] .CSV 파일 특정 컬럼 데이터 구글 맵 마커 표기(fetch) (0) | 2024.05.03 |
---|---|
[JS] .CSV 파일 특정 컬럼 데이터 카카오 맵 마커 표기(XMLHttpRequest) (0) | 2024.05.03 |
댓글