js对象转json数据: JOSN.stringify()
json数据转js对象: JSON.parse()
<script>var obj = {
a : 'A',
b : 'B',
c : 'C'
}
var json = JSON.stringify(obj)
console.log(json)
console.log(typeof json)
console.log('--------------------------')
var obj2 = JSON.parse(json)
console.log(obj2)
console.log(typeof obj2)
</script>
json官网上有一个 json2 的库用于 json 相关的操作。比如:// 将数组和对象转换成符合json格式的字符串:
// 引入 json2 库
text = JSON.stringify(['e', {pluribus: 'unum'}])
// text is '["e",{"pluribus":"unum"}]'