html如何格式化輸出JSON數(shù)據(jù)
發(fā)表時(shí)間:2023-09-22 來源:明輝站整理相關(guān)軟件相關(guān)文章人氣:
[摘要]這次給大家?guī)韍tml怎樣格式化輸出JSON數(shù)據(jù),html格式化輸出JSON數(shù)據(jù)的注意事項(xiàng)有哪些,下面就是實(shí)戰(zhàn)案例,一起來看一下。將 json 數(shù)據(jù)以美觀的縮進(jìn)格式顯示出來,借助最簡(jiǎn)單的 JSON.stringify 函數(shù)就可以了,因?yàn)榇撕瘮?shù)還有不常用的后面2個(gè)參數(shù)。<html><...
這次給大家?guī)韍tml怎樣
格式化輸出JSON數(shù)據(jù),html格式化輸出JSON數(shù)據(jù)的
注意事項(xiàng)有哪些,下面就是實(shí)戰(zhàn)案例,一起來看一下。
將 json 數(shù)據(jù)以美觀的縮進(jìn)格式顯示出來,借助最簡(jiǎn)單的 JSON.stringify 函數(shù)就可以了,因?yàn)榇撕瘮?shù)還有不常用的后面2個(gè)參數(shù)。
<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>
相信看了這些案例你已經(jīng)掌握了方法,更多精彩請(qǐng)關(guān)注php中文網(wǎng)其它相關(guān)文章!
相關(guān)閱讀:
H5里圖片中有縫隙應(yīng)該如何解決
H5的地理定位怎樣使用
h5的移動(dòng)端適配怎樣實(shí)現(xiàn)
以上就是html怎樣格式化輸出JSON數(shù)據(jù)的詳細(xì)內(nèi)容,更多請(qǐng)關(guān)注php中文網(wǎng)其它相關(guān)文章!
網(wǎng)站建設(shè)是一個(gè)廣義的術(shù)語,涵蓋了許多不同的技能和學(xué)科中所使用的生產(chǎn)和維護(hù)的網(wǎng)站。