主頁 > 知識庫 > html格式化輸出JSON示例(測試接口)

html格式化輸出JSON示例(測試接口)

熱門標(biāo)簽:默納克系統(tǒng)外呼顯示inns 周口導(dǎo)航地圖標(biāo)注 昌邑外呼系統(tǒng) 朝陽自動外呼系統(tǒng) 東莞人工外呼系統(tǒng)多少錢 400電話辦理尚景 地圖標(biāo)注地點下載 400電話是在哪里申請 商丘電話自動外呼系統(tǒng)怎么收費

將 json 數(shù)據(jù)以美觀的縮進(jìn)格式顯示出來,借助最簡單的 JSON.stringify 函數(shù)就可以了,因為此函數(shù)還有不常用的后面2個參數(shù)。

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

示例代碼如下:

<html>

    <head>

        <meta charset="utf-8" />

 

        <title>hello</title>

 

        <style>

            pre {outline: 1px solid #ccc; padding: 5px; margin: 5px; }

            .string { color: green; }

            .number { color: darkorange; }

            .boolean { color: blue; }

            .null { color: magenta; }

            .key { color: red; }

        </style>

        <script type="text/javascript">

        function syntaxHighlight(json) {

            if (typeof json != 'string') {

                json = JSON.stringify(json, undefined, 2);

            }

            json = json.replace(/&/g, '&').replace(/</g, '<').replace(/>/g, '>');

            return json.replace(/("(\\u[a-zA-Z0-9]{4}|\\[^u]|[^\\"])*"(\s*:)?|\b(true|false|null)\b|-?\d+(?:\.\d*)?(?:[eE][+\-]?\d+)?)/g, function(match) {

                var cls = 'number';

                if (/^"/.test(match)) {

                    if (/:$/.test(match)) {

                        cls = 'key';

                    } else {

                        cls = 'string';

                    }

                } else if (/true|false/.test(match)) {

                    cls = 'boolean';

                } else if (/null/.test(match)) {

                    cls = 'null';

                }

                return '<span class="' + cls + '">' + match + '</span>';

            });

        }

 

    </script>

    </head>

    <body>

 

    <pre id="result">

 

    </pre>

    <script type="text/javascript">

        var songResJson={  

              "service": "ALL",  

              "qt": 581,  

              "content": {  

                "answer": {  

                  "song": "如果緣只到遇見",  

                  "album": "如果緣只到遇見",  

                  "artist": "吳奇隆 嚴(yán)藝丹",  

                  "pic_url": "http://p1.music.126.net/-u3WgIXsFNCW7d8Jy7pCEA==/5921969627395387.jpg" 

                },  

                "scene": "music" 

              }  

            }

            document.getElementById('result').innerHTML = syntaxHighlight(songResJson);

 

        // $('#result').html(syntaxHighlight(songResJson));

    </script>

     

    </body>

</html> 

以上就是本文的全部內(nèi)容,希望對大家的學(xué)習(xí)有所幫助,也希望大家多多支持腳本之家。

標(biāo)簽:那曲 沈陽 福建 銅陵 湖南 阿拉善盟 揭陽 健身房

巨人網(wǎng)絡(luò)通訊聲明:本文標(biāo)題《html格式化輸出JSON示例(測試接口)》,本文關(guān)鍵詞  html,格式化,輸出,JSON,示例,;如發(fā)現(xiàn)本文內(nèi)容存在版權(quán)問題,煩請?zhí)峁┫嚓P(guān)信息告之我們,我們將及時溝通與處理。本站內(nèi)容系統(tǒng)采集于網(wǎng)絡(luò),涉及言論、版權(quán)與本站無關(guān)。
  • 相關(guān)文章
  • 下面列出與本文章《html格式化輸出JSON示例(測試接口)》相關(guān)的同類信息!
  • 本頁收集關(guān)于html格式化輸出JSON示例(測試接口)的相關(guān)信息資訊供網(wǎng)民參考!
  • 推薦文章