diff options
Diffstat (limited to 'files/zh-cn/web/javascript/reference/global_objects/json/stringify/index.html')
-rw-r--r-- | files/zh-cn/web/javascript/reference/global_objects/json/stringify/index.html | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/files/zh-cn/web/javascript/reference/global_objects/json/stringify/index.html b/files/zh-cn/web/javascript/reference/global_objects/json/stringify/index.html index e37a4fc9ee..a124d85c97 100644 --- a/files/zh-cn/web/javascript/reference/global_objects/json/stringify/index.html +++ b/files/zh-cn/web/javascript/reference/global_objects/json/stringify/index.html @@ -31,12 +31,12 @@ translation_of: Web/JavaScript/Reference/Global_Objects/JSON/stringify <dd>如果该参数是一个函数,则在序列化过程中,被序列化的值的每个属性都会经过该函数的转换和处理;如果该参数是一个数组,则只有包含在这个数组中的属性名才会被序列化到最终的 JSON 字符串中;如果该参数为 null 或者未提供,则对象所有的属性都会被序列化。</dd> <dt><code>space</code> {{optional_inline}}</dt> <dd>指定缩进用的空白字符串,用于美化输出(pretty-print);如果参数是个数字,它代表有多少的空格;上限为10。该值若小于1,则意味着没有空格;如果该参数为字符串(当字符串长度超过10个字母,取其前10个字母),该字符串将被作为空格;如果该参数没有提供(或者为 null),将没有空格。</dd> - <dt> - <h3 id="返回值">返回值</h3> - </dt> - <dd>一个表示给定值的JSON字符串。</dd> </dl> +<h3 id="返回值">返回值</h3> + +<p>一个表示给定值的JSON字符串。</p> + <h3 id="异常">异常</h3> <ul> |