当前位置:Gxlcms > html代码 > html格式化输出JSON示例(测试接口)

html格式化输出JSON示例(测试接口)

时间:2021-07-01 10:21:17 帮助过:78人阅读

将 json 数据以美观的缩进格式显示出来,借助最简单的 JSON.stringify 函数就可以了,因为此函数还有不常用的后面2个参数。

见MDN https://developer.mozilla.org/zh-CN/docs/Web/JavaScript/Reference/Global_Objects/JSON/stringify 的描述。

示例代码如下:

  1. <html>
  2. <head>
  3. <meta charset="utf-8" />
  4. <title>hello</title>
  5. <style>
  6. pre {outline: 1px solid #ccc; padding: 5px; margin: 5px; }
  7. .string { color: green; }
  8. .number { color: darkorange; }
  9. .boolean { color: blue; }
  10. .null { color: magenta; }
  11. .key { color: red; }
  12. </style>
  13. <script type="text/javascript">
  14. function syntaxHighlight(json) {
  15. if (typeof json != 'string') {
  16. json = JSON.stringify(json, undefined, 2);
  17. }
  18. json = json.replace(/&/g, '&').replace(/</g, '<').replace(/>/g, '>');
  19. return json.replace(/("(\\u[a-zA-Z0-9]{4}|\\[^u]|[^\\"])*"(\s*:)?|\b(true|false|null)\b|-?\d+(?:\.\d*)?(?:[eE][+\-]?\d+)?)/g, function(match) {
  20. var cls = 'number';
  21. if (/^"/.test(match)) {
  22. if (/:$/.test(match)) {
  23. cls = 'key';
  24. } else {
  25. cls = 'string';
  26. }
  27. } else if (/true|false/.test(match)) {
  28. cls = 'boolean';
  29. } else if (/null/.test(match)) {
  30. cls = 'null';
  31. }
  32. return '<span class="' + cls + '">' + match + '</span>';
  33. });
  34. }
  35. </script>
  36. </head>
  37. <body>
  38. <pre id="result">
  39. </pre>
  40. <script type="text/javascript">
  41. var songResJson={
  42. "service": "ALL",
  43. "qt": 581,
  44. "content": {
  45. "answer": {
  46. "song": "如果缘只到遇见",
  47. "album": "如果缘只到遇见",
  48. "artist": "吴奇隆 严艺丹",
  49. "pic_url": "http://p1.music.126.net/-u3WgIXsFNCW7d8Jy7pCEA==/5921969627395387.jpg"
  50. },
  51. "scene": "music"
  52. }
  53. }
  54. document.getElementById('result').innerHTML = syntaxHighlight(songResJson);
  55. // $('#result').html(syntaxHighlight(songResJson));
  56. </script>
  57. </body>
  58. </html>

以上就是本文的全部内容,希望对大家的学习有所帮助,也希望大家多多支持脚本之家。

人气教程排行