반응형 object2 [Laravel] How to use Laravel response()->json() to return empty object instead of empty array REQUEST 위와 같이 array 앞에 (object)를 입력하게 되면 빈 object가 생성된다. RESPONSE { "code": 200, "data": [], "notice" : [], "user": {} } 도움이 되셨다면 하트 및 댓글 부탁드립니다♥ 2021. 1. 5. [JQuery] 서버단에서 Object를 받았을때 javascript단에서 Object의 크기 알아내기 $(document).ready(function(){ $.ajax({ type : 'GET', url : '/userinfo', success : function(response) { if (Object.keys(response).length > 0) { alert('length > 0'); } else { alert('length < 0') } }, error : function(e) { alert("ERROR : " + e.statusText); } }); }); 2018. 8. 20. 이전 1 다음 반응형