써먹는 웹개발
[Js] ajax에서 500 에러났던 이유 본문
728x90
반응형
1
2
3
4
5
6
7
8
9
10
11
12
13
|
$.ajax({
type : "POST",
url : "/url.do",
data: {"code" : $("#code").val()},
contentType: 'application/x-www-form-urlencoded; charset=utf-8',
dataType : "json",
success : function(data) {
...
},
error:function(request, status, error){
...
}
});
|
cs |
$("#code").val()이 undefined여서 에러난 것으로 값이 정상적으로 들어오니 에러가 발생하지 않았음
728x90
반응형
'웹개발 > Js & Jquery' 카테고리의 다른 글
[Js] Failed to execute 'postMessage' on 'DOMWindow': The target origin provided ('https://exam.com') does not match the recipient window's origin ('https://www.exam.com') (0) | 2023.08.30 |
---|---|
[Js] 화면 넘김(submit)없이 파일업로드하기 (0) | 2023.08.28 |
[JQuery] attr 주의사항 (0) | 2023.08.03 |
[JS] 팝업 띄우기 주소 보안 방법 및 주의사항 (0) | 2023.07.25 |
[JQuery] 동적 추가된 append에 click event 처리 (0) | 2023.07.03 |
Comments