JSON.stringify()
和 JSON.parse()
是 JavaScript 中用于处理 JSON 数据的两个重要方法。
JSON.stringify()
JSON.stringify()
方法用于将 JavaScript 对象转换为 JSON 字符串。它接受一个对象作为参数,并返回相应的 JSON 字符串。
const person = {
name: 'John',
age: 30,
city: 'New York'
};
const jsonString = JSON.stringify(person);
console.log(jsonString);
// 输出: {"name":"John","age":30,"city":"New York"}
const person = {
name: 'John',
age: 30,
city: 'New York'
};
const jsonString = JSON.stringify(person, null, 2);
console.log(jsonString);
// 输出:
// {
// "name": "John",
// "age": 30,
// "city": "New York"
// }
JSON.parse()
JSON.parse()
方法用于将 JSON 字符串解析为 JavaScript 对象。它接受一个 JSON 字符串作为参数,并返回相应的 JavaScript 对象。
const jsonString = '{"name":"John","age":30,"city":"New York"}';
const person = JSON.parse(jsonString);
console.log(person);
// 输出: { name: 'John', age: 30, city: 'New York' }
通常,JSON.stringify()
和 JSON.parse()
用于在客户端和服务器之间传递数据。例如,从服务器获取 JSON 数据,然后在客户端解析它:
// 从服务器获取 JSON 数据
const response = await fetch('https://api.example.com/data');
const jsonText = await response.text();
// 解析 JSON 数据
const data = JSON.parse(jsonText);
console.log(data);
总的来说,JSON.stringify()
和 JSON.parse()
是在处理 JSON 数据时非常有用的两个方法,它们使得 JavaScript 能够轻松地与其他应用程序或服务交换数据。
原文链接:codingdict.net