반응형
json 형태의 object 변수인 myObj 가 있다고 치자
이것을 JS에서 alert나 console.log로 찍고싶을때
alert(myObj); 로만 찍으면
[object Object] 라고 나온다.
myObj의 속 내용을 알고 싶다면
alert(JSON.stringify(myObj));
라고 찍어주면 된다.
반응형
'이과 > 컴퓨터활용' 카테고리의 다른 글
Error executing process Process failed (exit code = 1). See error log. Process failed (exit code = 1). (0) | 2023.10.24 |
---|---|
Error executing process Utility 'mysql.exe' not found in client home 에러 (0) | 2023.10.13 |
centos7 php7.3 설치 과정 (1) | 2022.09.29 |
centos7 mysql5.7 설치방법 (2) | 2022.09.15 |
Apache (httpd) 설치 과정 (1) | 2022.09.01 |
댓글