最新消息:雨落星辰是一个专注网站SEO优化、网站SEO诊断、搜索引擎研究、网络营销推广、网站策划运营及站长类的自媒体原创博客

javascript - Is there a function to stringify JSON with whitespace? - Stack Overflow

programmeradmin5浏览0评论

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 badges
Add a ment  | 

1 Answer 1

Reset to default 16

The 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:

发布评论

评论列表(0)

  1. 暂无评论