标签:
对象序列化是指将对象的状态转换为字符串,也可将字符串还原为对象。
JSON.stringify()和JSON.parse()用来序列化和还原javascript对象。
o = {x:1,y:{z:[false,null,""]}};
s = JSON.stringify(o);//‘{"x":1,"y":{"z":[false,null,""]}}‘
p = JSON.parse(s);//p是o的深拷贝
标签:
原文地址:http://www.cnblogs.com/rellame/p/5026283.html