阅读量:0
有以下几种方法可以将 JSON 转换为字符串:
- 使用 JSON.stringify() 方法:
const json = { "name": "John", "age": 30 }; const jsonString = JSON.stringify(json); console.log(jsonString);
- 使用 JSON.stringify() 方法的第二个参数,可以对转换结果进行格式化:
const json = { "name": "John", "age": 30 }; const jsonString = JSON.stringify(json, null, 2); // 使用两个空格进行缩进 console.log(jsonString);
- 使用 JSON.stringify() 方法的第二个参数,可以选取想要序列化的属性:
const json = { "name": "John", "age": 30, "city": "New York" }; const jsonString = JSON.stringify(json, ["name", "age"]); console.log(jsonString);
- 使用 JSON.stringify() 方法的第二个参数,可以传入一个函数,对属性值进行自定义序列化:
const json = { "name": "John", "age": 30, "city": "New York" }; const jsonString = JSON.stringify(json, (key, value) => { if (key === "city") { return undefined; // 不序列化 city 属性 } return value; }); console.log(jsonString);
- 使用 JSON.stringify() 方法的第三个参数,可以指定缩进字符:
const json = { "name": "John", "age": 30 }; const jsonString = JSON.stringify(json, null, "\t"); // 使用制表符进行缩进 console.log(jsonString);
以上是常用的 JSON 转字符串的方法,根据需要选择适合的方式进行转换。