如何以编程方式美化 JSON?
2022-08-29 23:21:12
你知道JavaScript的“JSON Beautifier”吗?
从
{"name":"Steve","surname":"Jobs","company":"Apple"}
自
{
"name" : "Steve",
"surname" : "Jobs",
"company" : "Apple"
}
例
some_magic(jsonObj); // return beautified JSON