在 JavaScript 中,可以使用 JSON.parse() 和 JSON.stringify() 方法對 JSON 數據進行處理。
let jsonString = '{"name": "John", "age": 30, "city": "New York"}';
let jsonObject = JSON.parse(jsonString);
console.log(jsonObject.name); // 輸出 "John"
let jsonObject = {name: "John", age: 30, city: "New York"};
let jsonString = JSON.stringify(jsonObject);
console.log(jsonString); // 輸出 '{"name":"John","age":30,"city":"New York"}'
此外,還可以使用一些其他的 JSON 方法,如:
例如:
let jsonObject = {name: "John", age: 30, city: "New York"};
console.log(JSON.keys(jsonObject)); // 輸出 ["name", "age", "city"]
console.log(JSON.values(jsonObject)); // 輸出 ["John", 30, "New York"]
console.log(JSON.entries(jsonObject)); // 輸出 [["name", "John"], ["age", 30], ["city", "New York"]]