html頁面展示Json樣式

來源:互聯網
上載者:User

標籤:red   lse   define   部分   OLE   圖片   直接   字串   函數   

一般有些做後台資料查詢,要把後台返回json資料展示到頁面上,如果需要展示樣式更清晰、直觀、一目瞭然,就要用到html+css+js實現這個小功能

一、css代碼

pre {outline: 1px solid #ccc; } .string { color: green; } .number { color: darkorange; } .boolean { color: blue; } .null { color: magenta; } .key { color: red; }

 

 

二、html部分代碼

<pre id="jsonShow"></pre>    //必須使用這個標籤,否則顯示的json沒有格式化

 

三、js部分

1、首先封裝一段展示json樣式的代碼(我沒有加行號,你可以直接複製拿用)

jsonShowFn(json){                if (!json.match("^\{(.+:.+,*){1,}\}$")) {                    return json           //判斷是否是json資料,不是直接返回                }                if (typeof json != ‘string‘) {                    json = JSON.stringify(json, undefined, 2);                }                json = json.replace(/&/g, ‘&amp;‘).replace(/</g, ‘&lt;‘).replace(/>/g, ‘&gt;‘);                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>‘;                });            }

 

2、函數調用

$(‘#jsonShow‘).html(jsonShowFn(json))   //json為要展示到頁面的資料

 

四、效果

因項目返回查詢資料量比較大,我只展示部分代碼樣式

在後台返回資料過程中,返回的資料為字串形式的json,如果你也遇到這種情況,先把返回資料轉成json形式,用到 JSON.parse()這個方法;若沒這種情況,可直接使用

 

好!完事!希望能幫到你

 

html頁面展示Json樣式

相關文章

聯繫我們

該頁面正文內容均來源於網絡整理,並不代表阿里雲官方的觀點,該頁面所提到的產品和服務也與阿里云無關,如果該頁面內容對您造成了困擾,歡迎寫郵件給我們,收到郵件我們將在5個工作日內處理。

如果您發現本社區中有涉嫌抄襲的內容,歡迎發送郵件至: info-contact@alibabacloud.com 進行舉報並提供相關證據,工作人員會在 5 個工作天內聯絡您,一經查實,本站將立刻刪除涉嫌侵權內容。

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.