概述
JSON stringify和字符串化工具帮助您在 JSON 字符串和 JSON 对象之间进行转换。它支持将 JSON 字符串解析为格式化对象,以及将对象字符串化为 JSON 格式。
JSON parse
将 JSON 字符串转换为格式化对象。此模式帮助您验证和格式化 JSON 字符串。
原始 JSON 字符串:
{\"name\":\"John Doe\",\"age\":30,\"isStudent\":false,\"hobbies\":[\"reading\",\"gaming\"],\"address\":{\"city\":\"New York\",\"country\":\"USA\"}}
格式化的 JSON:
{ "name": "John Doe", "age": 30, "isStudent": false, "hobbies": [ "reading", "gaming" ], "address": { "city": "New York", "country": "USA" } }
JSON stringify
将 JSON 字符串转换为格式化对象。此模式帮助您验证和格式化 JSON 字符串。
JSON 对象:
const personData = { name: "John Doe", age: 30, isStudent: false, hobbies: ["reading", "gaming"], address: { city: "New York", country: "USA" } };
转换为 JSON 字符串:
// 压缩的 JSON 字符串(带转义引号) const rawJson = "{\"name\":\"John Doe\",\"age\":30,\"isStudent\":false,\"hobbies\":[\"reading\",\"gaming\"],\"address\":{\"city\":\"New York\",\"country\":\"USA\"}}"; // 美化的 JSON 字符串 const prettyJson = JSON.stringify(personData, null, 2);
选项
- 缩进大小:选择 2、4 或 8 个空格进行格式化
- 转义 Unicode:将 Unicode 字符转换为 \uXXXX 格式
- 移除空格:输出无空格或换行的压缩 JSON