alert 출력시
[object Object] 오류
해결 방법입니다.
alert, console.log 출력시 [object Object] 오류
자바스크립트에서 json 형태의 data를 alert(data) 또는 console.log(data)로 출력시
[object Object] 라고 나오게 됩니다.
alert, console.log 출력시 [object Object] 해결 방법
오류는 아니지는 이를 우리가 읽을 수 있는 형태로 출력하려면 json 형태에서 json.stringify() 메소드를 이용하여
객체를 json화 시켜야 합니다.
alert(JSON.stringify(data));
console.log(JSON.stringify(data));
json.stringify()
자바스크립트 파일 내에서 특정한 데이터를 json의 형태(포맷, 문법)로 문자 데이터화 시켜주는 메소드입니다.
json에 대한 자세한 포스트는 아래로 이동해주세요.
https://goddino.tistory.com/207
반응형
'개발 > Javascript' 카테고리의 다른 글
[js] 자바스크립트 버튼 클릭 후 disabled 처리 (ft. react, css) (0) | 2021.11.17 |
---|---|
[js] TypeError: Cannot read property 'x' of undefined (ft. javascript, react) (0) | 2021.10.29 |
[js] 자바스크립트로 시간차 지연 출력 (ft. for문, setTimeout, react) (0) | 2021.10.08 |
[ts] Could not find a declaration file for module 'react' (0) | 2021.09.13 |
[js] 만 나이 계산하기 (0) | 2021.09.09 |
댓글