JavaScript:如何直接从对象生成格式化的易于阅读的 JSON?

发布于 2024-09-15 03:13:22 字数 1010 浏览 4 评论 0原文

可能的重复:
如何以编程方式美化 JSON?

我知道如何从对象生成 JSON使用 JSON.stringify,或者在我的例子中使用方便的 jQuery JSON Google 代码

现在效果很好,但输出对于人类来说很难阅读。有没有一种简单的方法、函数或其他方式来输出格式整齐的 JSON 文件?

这就是我的意思:

JSON.stringify({a:1,b:2,c:{d:1,e:[1,2]}});

给...

"{"a":1,"b":2,"c":{"d":1,"e":[1,2]}}"

我想要这样的东西:

{
 "a":1,
 "b":2,
 "c":{
    "d":1,
    "e":[1,2]
 }
}

例如,添加换行符和选项卡。阅读较大的文档要容易得多。

我希望在不添加任何大型库的情况下理想地做到这一点,例如,不是 Prototype,< a href="https://en.wikipedia.org/wiki/Yahoo!_UI_Library" rel="noreferrer">YUI 或其他。

Possible Duplicate:
How can I beautify JSON programmatically?

I know how to generate JSON from an object using JSON.stringify, or in my case the handy jQuery JSON from Google Code.

Now this works fine, but the output is hard to read for humans. Is there an easy way, function, or whatever to output a neatly formatted JSON file?

This is what I mean:

JSON.stringify({a:1,b:2,c:{d:1,e:[1,2]}});

gives...

"{"a":1,"b":2,"c":{"d":1,"e":[1,2]}}"

I'd like something like this instead:

{
 "a":1,
 "b":2,
 "c":{
    "d":1,
    "e":[1,2]
 }
}

E.g., with newlines and tabs added. It's much easier to read for larger documents.

I'd like to do this ideally without adding any huge libraries, for example, not Prototype, YUI, or whatever.

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

一腔孤↑勇 2024-09-22 03:13:22

JSON.stringify 需要更多 可选参数

尝试:

 JSON.stringify({a:1,b:2,c:{d:1,e:[1,2]}}, null, 4); // Indented 4 spaces
 JSON.stringify({a:1,b:2,c:{d:1,e:[1,2]}}, null, "\t"); // Indented with tab

来自:

如何以编程方式美化 JSON?

它应该在现代浏览器中工作,如果您需要不支持的浏览器的回退,它包含在 json2.js 中JSON 辅助函数。出于显示目的,请将输出放入

 标记中以显示换行符。

JSON.stringify takes more optional arguments.

Try:

 JSON.stringify({a:1,b:2,c:{d:1,e:[1,2]}}, null, 4); // Indented 4 spaces
 JSON.stringify({a:1,b:2,c:{d:1,e:[1,2]}}, null, "\t"); // Indented with tab

From:

How can I beautify JSON programmatically?

It should work in modern browsers, and it is included in json2.js if you need a fallback for browsers that don't support the JSON helper functions. For display purposes, put the output in a <pre> tag to get newlines to show.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文