admin管理员组文章数量:1339474
I am aware of the fact that for JSON whitespace matters. But, just for debug output, I would like to print JSON objects formatted, thus with tabs and newlines.
Is there a function in JavaScript for formatted JSON stringification?
I am aware of the fact that for JSON whitespace matters. But, just for debug output, I would like to print JSON objects formatted, thus with tabs and newlines.
Is there a function in JavaScript for formatted JSON stringification?
Share Improve this question edited May 18, 2013 at 8:10 Denys Séguret 383k90 gold badges811 silver badges776 bronze badges asked May 16, 2013 at 15:35 danijardanijar 34.3k53 gold badges179 silver badges315 bronze badges1 Answer
Reset to default 16The third argument of JSON.stringify controls spacing. So you can do this, for example :
var o = {
a: {c:34}
};
console.log(JSON.stringify(o, null, '\t'));
This logs
{
"a": {
"c": 34
}
}
This parameter can accept different kind of values :
The space argument may be used to control spacing in the final string. If it is a number, successive levels in the stringification will each be indented by this many space characters (up to 10). If it is a string, successive levels will indented by this string (or the first ten characters of it).
Using a tab character mimics standard pretty-print appearance:
本文标签: javascriptIs there a function to stringify JSON with whitespaceStack Overflow
版权声明:本文标题:javascript - Is there a function to stringify JSON with whitespace? - Stack Overflow 内容由网友自发贡献,该文观点仅代表作者本人, 转载请联系作者并注明出处:http://www.betaflare.com/web/1743585755a2506402.html, 本站仅提供信息存储空间服务,不拥有所有权,不承担相关法律责任。如发现本站有涉嫌抄袭侵权/违法违规的内容,一经查实,本站将立刻删除。
发表评论