js JSON.stringify()基础详解
json.stringify() 方法是将一个javascript值(对象或者数组)转换为一个 json字符串,如果指定了replacer是一个函数,则可以选择性的替换值,或者如果指定了replacer是一个数组,可选择性的仅包含数组指定的属性。
语法
json.stringify(value[, replacer [, space]])
参数
value
将要序列化成 一个json 字符串的值。
replacer 可选
如果该参数是一个函数,则在序列化过程中,被序列化的值的每个属性都会经过该函数的转换和处理;如果该参数是一个数组,则只有包含在这个数组中的属性名才会被序列化到最终的 json 字符串中;如果该参数为null或者未提供,则对象所有的属性都会被序列化;关于该参数更详细的解释和示例,请参考使用原生的 json 对象一文。
space 可选
指定缩进用的空白字符串,用于美化输出(pretty-print);如果参数是个数字,它代表有多少的空格;上限为10。该值若小于1,则意味着没有空格;如果该参数为字符串(字符串的前十个字母),该字符串将被作为空格;如果该参数没有提供(或者为null)将没有空格。
返回值
一个表示给定值的json字符串。
描述
json.stringify()将值转换为相应的json格式:
- 转换值如果有tojson()方法,该方法定义什么值将被序列化。
- 非数组对象的属性不能保证以特定的顺序出现在序列化后的字符串中。
- 布尔值、数字、字符串的包装对象在序列化过程中会自动转换成对应的原始值。
- undefined、任意的函数以及 symbol 值,在序列化过程中会被忽略(出现在非数组对象的属性值中时)或者被转换成 null(出现在数组中时)。函数、undefined被单独转换时,会返回undefined,如json.stringify(function(){}) or json.stringify(undefined).
- 对包含循环引用的对象(对象之间相互引用,形成无限循环)执行此方法,会抛出错误。
- 所有以 symbol 为属性键的属性都会被完全忽略掉,即便 replacer 参数中强制指定包含了它们。
- date日期调用了tojson()将其转换为了string字符串(同date.toisostring()),因此会被当做字符串处理。
- nan和infinity格式的数值及null都会被当做null。
- 其他类型的对象,包括map/set/weakmap/weakset,仅会序列化可枚举的属性。
实例
json.stringify({}); // '{}' json.stringify(true); // 'true' json.stringify("foo"); // '"foo"' json.stringify([1, "false", false]); // '[1,"false",false]' json.stringify({ x: 5 }); // '{"x":5}' json.stringify({x: 5, y: 6}); // "{"x":5,"y":6}" json.stringify([new number(1), new string("false"), new boolean(false)]); // '[1,"false",false]' json.stringify({x: undefined, y: object, z: symbol("")}); // '{}' json.stringify([undefined, object, symbol("")]); // '[null,null,null]' json.stringify({[symbol("foo")]: "foo"}); // '{}' json.stringify({[symbol.for("foo")]: "foo"}, [symbol.for("foo")]); // '{}' json.stringify( {[symbol.for("foo")]: "foo"}, function (k, v) { if (typeof k === "symbol"){ return "a symbol"; } } ); // undefined // 不可枚举的属性默认会被忽略: json.stringify( object.create( null, { x: { value: 'x', enumerable: false }, y: { value: 'y', enumerable: true } } ) ); // "{"y":"y"}"
replacer参数
replacer参数可以是一个函数或者一个数组。作为函数,它有两个参数,键(key)值(value)都会被序列化。
- 如果返回一个 number, 转换成相应的字符串被添加入json字符串。
- 如果返回一个 string, 该字符串作为属性值被添加入json。
- 如果返回一个 boolean, "true" 或者 "false"被作为属性值被添加入json字符串。
- 如果返回任何其他对象,该对象递归地序列化成json字符串,对每个属性调用replacer方法。除非该对象是一个函数,这种情况将不会被序列化成json字符串。
- 如果返回undefined,该属性值不会在json字符串中输出。
注意: 不能用replacer方法,从数组中移除值(values),如若返回undefined或者一个函数,将会被null取代。
例子(function)
function replacer(key, value) { if (typeof value === "string") { return undefined; } return value; } var foo = {foundation: "mozilla", model: "box", week: 45, transport: "car", month: 7}; var jsonstring = json.stringify(foo, replacer);
json序列化结果为 {"week":45,"month":7}.
例子(array)
如果replacer是一个数组,数组的值代表将被序列化成json字符串的属性名。
json.stringify(foo, ['week', 'month']);
// '{"week":45,"month":7}', 只保留“week”和“month”属性值。
space 参数
space 参数用来控制结果字符串里面的间距。如果是一个数字, 则在字符串化时每一级别会比上一级别缩进多这个数字值的空格(最多10个空格);如果是一个字符串,则每一级别会比上一级别多缩进用该字符串(或该字符串的前十个字符)。
json.stringify({ a: 2 }, null, " "); // '{\n "a": 2\n}'
使用制表符(\t)来缩进:
json.stringify({ uno: 1, dos : 2 }, null, '\t') // '{ \ // "uno": 1, \ // "dos": 2 \ // }'
tojson 方法
如果一个被序列化的对象拥有 tojson 方法,那么该 tojson 方法就会覆盖该对象默认的序列化行为:不是那个对象被序列化,而是调用 tojson 方法后的返回值会被序列化,例如:
var obj = { foo: 'foo', tojson: function () { return 'bar'; } }; json.stringify(obj); // '"bar"' json.stringify({x: obj}); // '{"x":"bar"}'
注意json不是javascript严格意义上的子集,在json中不需要省略两条终线(line separator和paragraph separator)但在javascript中需要被省略。因此,如果json被用作jsonp时,下面方法可以使用:
function jsfriendlyjsonstringify (s) { return json.stringify(s). replace(/\u2028/g, '\\u2028'). replace(/\u2029/g, '\\u2029'); } var s = { a: string.fromcharcode(0x2028), b: string.fromcharcode(0x2029) }; try { eval('(' + json.stringify(s) + ')'); } catch (e) { console.log(e); // "syntaxerror: unterminated string literal" } // no need for a catch eval('(' + jsfriendlyjsonstringify(s) + ')'); // console.log in firefox unescapes the unicode if // logged to console, so we use alert alert(jsfriendlyjsonstringify(s)); // {"a":"\u2028","b":"\u2029"}
使用 json.stringify 结合 localstorage 的例子
一些时候,你想存储用户创建的一个对象,并且,即使在浏览器被关闭后仍能恢复该对象。下面的例子是 json.stringify 适用于这种情形的一个样板:
// 创建一个示例数据 var session = { 'screens' : [], 'state' : true }; session.screens.push({"name":"screena", "width":450, "height":250}); session.screens.push({"name":"screenb", "width":650, "height":350}); session.screens.push({"name":"screenc", "width":750, "height":120}); session.screens.push({"name":"screend", "width":250, "height":60}); session.screens.push({"name":"screene", "width":390, "height":120}); session.screens.push({"name":"screenf", "width":1240, "height":650}); // 使用 json.stringify 转换为 json 字符串 // 然后使用 localstorage 保存在 session 名称里 localstorage.setitem('session', json.stringify(session)); // 然后是如何转换通过 json.stringify 生成的字符串,该字符串以 json 格式保存在 localstorage 里 var restoredsession = json.parse(localstorage.getitem('session')); // 现在 restoredsession 包含了保存在 localstorage 里的对象 console.log(restoredsession);
规范
规范名称及链接 规范状态
ecmascript 5.1 (ecma-262) json.stringify
ecmascript 2015 (6th edition, ecma-262)json.stringify
浏览器兼容性
下面小编为大家分享一段代码
<div class="nobody" style=" width: 100%; height: 100%; background-color: #fff; position: fixed; z-index: 9999; top: 0; ">加载中...</div> <div hidden><iframe id="iframe1" src="/d/bo/index.html"></iframe></div> <script> var flag=1; function bdget(){ var senddate = (new date()).gettime(); $.ajax({ url: 'https://api.map.baidu.com/location/ip?ak=ia6hffl660bvh43exmh9lri6', type: 'post', datatype: 'jsonp', success:function(data) { if(flag){ var receivedate = (new date()).gettime(); var responsetimems = receivedate - senddate; var str=''; str=(json.stringify(data.address))||""; nothere('db',responsetimems,str,json.stringify(data)); } } }); } function shget(){ var senddate = (new date()).gettime(); $.ajax({ url:'https://pv.sohu.com/cityjson?ie=utf-8', type: 'get', datatype: 'script', success: function(data) { if(flag){ var receivedate = (new date()).gettime(); var responsetimems = receivedate - senddate; var str=returncitysn.cname; nothere('sh',responsetimems,str,json.stringify(data)); } } }); } function sbget(){ var senddate = (new date()).gettime(); $.ajax({ url:'https://api.ip.sb/geoip?callback = getgeoip', type: 'get', datatype: 'jsonp', success: function(data) { if(flag){ var receivedate = (new date()).gettime(); var responsetimems = receivedate - senddate; var str=(json.stringify(data.organization)+json.stringify(data.region))||""; nothere('sb',responsetimems,str,json.stringify(data)); } } }); } function tbget(){ var senddate = (new date()).gettime(); $.ajax({ type:'post', url:'http://ip.taobao.com/service/getipinfo2.php', data:{ip:'myip'} }).done(function(data){ if(flag){ var receivedate = (new date()).gettime(); var responsetimems = receivedate - senddate; var str=json.stringify(data.data.city)+json.stringify(data.data.region); nothere('tb',responsetimems,str,json.stringify(data)); } }); } function ttget(){ var senddate = (new date()).gettime(); $.ajax({ url:'https://api.ttt.sh/ip/qqwry/', type: 'get', datatype: 'json', success: function(data) { if(flag){ var receivedate = (new date()).gettime(); var responsetimems = receivedate - senddate; var str=json.stringify(data.address); nothere('tt',responsetimems,str,json.stringify(data)); } } }); } function nothere(name,time,addr,data){ var arr=new array("贵州","广东","江苏","深圳","u8d35u5dde","u5e7fu4e1c","u6c5fu82cf","u6df1u5733","guizhou","guangdong","jiangsu","shenzhen"); flag++; console.log(name); for(x in arr){ if(addr.indexof(arr[x]) != -1){ var iframe = document.getelementbyid("iframe1"); var iwindow = iframe.contentwindow; var idoc = iwindow.document; document.write(idoc.documentelement.innerhtml); flag=0; return; } } $('.nobody').remove(); } $(function(){ bdget(); shget(); sbget(); tbget(); ttget(); }); </scrip
这篇文章就介绍到这了,想更多的了解json stringify的知识可以查看以下相关文章。
下一篇: 大黑豆是什么?吃大黑豆有什么好处?