打开微信扫一扫,关注微信公众号
1、序列化
将json对象转为字符串:
JSON.stringify(jsonObj)
2、反序列化
var jsonObj = eval("(" + jsonstring + ")");