반응형
var json_object = {}
var json_array = []
json_array의 경우는 비어있는지 체크할 때 json_array.length 가 0인지 체크하면 되지만
json_object의 경우는 length를 사용하면 제대로 된 결과를 얻을 수 없다.
이 경우 jquery에서 제공해 주는
isEmptyObject()를 사용하면 된다.
출처 : http://api.jquery.com/jQuery.isEmptyObject/
1. 리턴 값
비어있는 object이면 true를 리턴
2. 사용법
if(jQuery.isEmptyObject(json_object)) {
// 비어 있을 경우
}
if(true === jQuery.isEmptyIObject(json_object)) {
// 비어 있을 경우
}
728x90
반응형
'웹 개발' 카테고리의 다른 글
javascript array sort (0) | 2019.08.23 |
---|---|
[javascript] runtime check (0) | 2019.08.23 |
[javascript] jquery를 이용하여 tag의 첫번째 자리 (index 0)에 element 추가하기 (0) | 2019.08.23 |
javascript unit test - qunit (0) | 2019.08.23 |
[java] HashMap, HashTable, LinkedHashMap, ConcurrentHashMap (0) | 2019.08.23 |