JavaScript:如何直接从对象生成格式化的易于阅读的 JSON?
可能的重复:
如何以编程方式美化 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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
JSON.stringify
需要更多 可选参数。尝试:
来自:
如何以编程方式美化 JSON?
它应该在现代浏览器中工作,如果您需要不支持的浏览器的回退,它包含在 json2.js 中JSON 辅助函数。出于显示目的,请将输出放入
JSON.stringify
takes more optional arguments.Try:
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.