Your Ajax request contains the following setting:
dataType: "json"
The documentation states that jQuery:
Evaluates the response as JSON and returns a JavaScript object. (...) The JSON data is parsed in a strict manner; any malformed JSON is rejected and a parse error is thrown.
This means that if the server returns invalid JSON with a 200 OK
status then jQuery fires the error function and set the textStatus
parameter to "parsererror"
.
Solution: Make sure that the server returns valid JSON. It is worth noting that an empty response is also considered invalid JSON; you could return {}
or null
for example which validate as JSON.
You can check whether a JSON is valid or not on jsonlint.com.
간단히 번역하자면, dataType을 json으로 해 놓은 경우 반환되는 json의 형태가 올바르지 않을 경우 http response code가 200이 떨어지더라도 fail event가 발생한다. 반환된 json이 정상적인지 확인하려면 jsonlint.com 에 들어가면 가능하다.
'IT 실무 > 웹프로그래밍' 카테고리의 다른 글
특수문자표, 기본 특수문자 목록 (0) | 2017.05.06 |
---|---|
크기가 다른 블럭이 타일형태로 쌓이는 레이아웃(Masonry) 적용하기 (0) | 2017.05.06 |
브라우저 tab에서 notification사용하기 (0) | 2016.04.05 |
height 100%가 제대로 적용이 안될 때 (0) | 2015.12.08 |
Javascript는 Call by reference인가 Call by value인가 (0) | 2015.11.21 |
댓글