码迷,mamicode.com
首页 > Web开发 > 详细

JSON.stringify()与JSON.parse()区别

时间:2020-02-15 13:33:49      阅读:86      评论:0      收藏:0      [点我收藏+]

标签:console   报错   bsp   gif   typeof   string   script   作用   ons   

一、JSON.stringify()与JSON.parse()的区别

JSON.stringify()的作用是将 JavaScript 对象转换为 JSON 字符串,JSON.parse()可以将JSON字符串转为一个对象。

简单点说,它们的作用是相对的,我用JSON.stringify()将对象a变成了字符串c,那么我就可以用JSON.parse()将字符串c还原成对象a。

let arr = [1,2,3];
JSON.stringify(arr);//‘[1,2,3]‘
typeof JSON.stringify(arr);//string

let string = ‘[1,2,3]‘;
console.log(JSON.parse(string))//[1,2,3]
console.log(typeof JSON.parse(string))//object

在使用JSON.parse()需要注意一点,由于此方法是将JSON字符串转换成对象,所以你的字符串必须符合JSON格式,即键值都必须使用双引号包裹

let a = ‘["1","2"]‘;
let b = "[‘1‘,‘2‘]";
console.log(JSON.parse(a));// Array [1,2]
console.log(JSON.parse(b));// 报错

 

JSON.stringify()与JSON.parse()区别

标签:console   报错   bsp   gif   typeof   string   script   作用   ons   

原文地址:https://www.cnblogs.com/chaochao2536/p/12311111.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!