- 특정 문자열이 JSON 문자열 형식인지 파악하기
- 이것은 어떠한 데이터를 JSON Object 로 변환하기 전 확인할 때 사용할 수 있습니다.
var response = false; try { response = jQuery.parseJSON('response from server'); } catch (error) { console.log("is not JSON type String or else); } if(respone && typeof response =='object') { //It is JSON } else { if(response === false || response == null) { //the response was a string "false", parseJSON will convert it to boolean false } else { //the response was something else } }
참고: http://stackoverflow.com/questions/4295386/how-can-i-check-if-a-value-is-a-json-object
'Front-end > Javascript' 카테고리의 다른 글
javascript- 성능향상 코딩법 (링크) (0) | 2013.09.04 |
---|---|
JavaScript-Math.abs() 를 이용한 절대값 구하기 (0) | 2013.08.02 |
Javascript-Tomcat header size 제한 설정 (0) | 2013.07.22 |
JavaScript-Memory leak 해결하기, 메모리 누수 해결하기 (0) | 2013.07.19 |
JavaScript-jQueryUi-Slider 의 Handler 를 여러 개 생성하기 (0) | 2013.06.21 |