gpt4 book ai didi

html - 将 JSON 显示为 HTML

转载 作者:bug小助手 更新时间:2023-10-28 01:27:03 25 4
gpt4 key购买 nike

关于如何将 JSON 嵌入 HTML 页面中的任何建议,其中 JSON 格式为人类可读样式?例如,当您在浏览器中查看 XML 时,大多数浏览器都会显示 XML 格式(缩进、正确的换行符等)。我希望 JSON 的最终结果相同。

颜色语法突出显示将是一个奖励。

谢谢

最佳答案

您可以将 JSON.stringify 函数用于未格式化的 JSON。它以格式化的方式输出。

JSON.stringify({ foo: "sample", bar: "sample" }, null, 4)

这样转

{ "foo": "sample", "bar": "sample" }

进入

 {
"foo": "sample",
"bar": "sample"
}

现在数据是可读格式,您可以使用 Google Code Prettify @A 建议的脚本。征收颜色代码。

值得补充的是IE7 and older browsers do not support the JSON.stringify method .

关于html - 将 JSON 显示为 HTML,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/883977/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com