반응형
제이쿼리 each undefined 처리
-
자바스크립트 json 'undefined' 값 변경하기JavaScript 2017. 12. 3. 00:32
json 데이터를 each문으로 추출할때 123$.each(json, function(index, key){ key.column})Colored by Color Scriptercs column에 값이 null이면'undefined' 라고 문자형식으로 나온다.이때 key.column||'' 로 써주면 공백으로 나온다. ※공백대신 다른문자로 보여주고 싶을때key.column||'-' 이런 식으로 정의하면 null일때 'undefined'란 문자대신 - 라고 나온다.