[DEV] 기록

[javascript] json 이쁘게 출력하기

꾸준함. 2022. 3. 24. 01:54

개요

요구사항 중 하나가 ajax 결과로 받은 json을 테이블에 이쁘게 출력하는 것이었습니다.

 

코드

<pre> 태그를 미리 테이블 내 선언해놓고 id를 부여한 후 JSON.stringify(json)을 넣어주면 됩니다.

$('#jsonPrettyPreTag').html(JSON.stringify(data, undefined, 2));

 

참고

https://stackoverflow.com/questions/16862627/json-stringify-output-to-div-in-pretty-print-way

 

JSON.stringify output to div in pretty print way

I JSON.stringify a json object by result = JSON.stringify(message, my_json, 2) The 2 in the argument above is supposed to pretty print the result. It does this if I do something like alert(result...

stackoverflow.com

 

반응형