ホームページ > 記事 > ウェブフロントエンド > javascript_javascriptスキルによるJSON形式のページ表示と美化方法
{"name": "monkey","age": "24","height": 164.0}
上記の JSON 文字列をページ上で読みやすく表示したい場合は、次のスタイルに変更します:
{ "name": "monkey", "age": "24", "height": 164.0cm }
この記事で紹介する方法はJavaScriptをベースにしており、コードは以下の通りです:
<html> <head>/ //style中是css代码 <style type="text/css"> body { white-space: pre; font-family: monospace; } </style> //script中是javascript代码 <script> window.error_id_msgs = <%= error_id_msgs | raw %>; function myFunction() { document.body.innerHTML = ""; document.body.appendChild(document.createTextNode(JSON.stringify(window.error_id_msgs, null, 4))); } </script> </head> <body onload="myFunction()"> //表示页面加载时调用myFunction() </body> </html>
window.error_id_msgs が変換対象の json オブジェクトである場合、css と myFunction の組み合わせでページ表示変換を実現できます