json 검증 썸네일형 리스트형 json undefined 체크하기 $.ajax({ type : 'GET', url:"https://domain.com", dataType:"jsonp", error : function(error) { console.log("Error!"); }, success : function(data) { var jsonData = JSON.stringify(data); var json = JSON.parse(jsonData); var json_check; var json_msg; if (json.routes !== undefined) { // json undefined check json_check = 1; } else { json_msg = json.error.error_message; json_check = 2; } var jsonData1 =.. 더보기 이전 1 다음