JSON.parse()和JSON.stringify()
2021-06-30 21:04
标签:异常 nbsp obj 字符 details 单引号 引号 抛出异常 article parse用于从一个字符串中解析出json对象,如 结果: Object age: "23" 注意:单引号写在{}外,每个属性名都必须用双引号,否则会抛出异常。 stringify()用于从一个对象解析出字符串,如 结果: "{"a":1,"b":2}" 转:http://blog.csdn.net/wangxiaohu__/article/details/7254598 JSON.parse()和JSON.stringify() 标签:异常 nbsp obj 字符 details 单引号 引号 抛出异常 article 原文地址:http://www.cnblogs.com/liulipeng/p/7134482.html
var str = ‘{"name":"huangxiaojian","age":"23"}‘
JSON.parse(str)
name: "huangxiaojian"
__proto__: Object
var a = {a:1,b:2}
JSON.stringify(a)
文章标题:JSON.parse()和JSON.stringify()
文章链接:http://soscw.com/index.php/essay/100012.html