PrettyJSONEachRow
输入 | 输出 | 别名 |
---|---|---|
✗ | ✔ | PrettyJSONLines , PrettyNDJSON |
描述
与 JSONEachRow 的区别仅在于 JSON 使用换行符和 4 个空格缩进进行美化格式化。
用法示例
{
"num": "42",
"str": "hello",
"arr": [
"0",
"1"
],
"tuple": {
"num": 42,
"str": "world"
}
}
{
"num": "43",
"str": "hello",
"arr": [
"0",
"1",
"2"
],
"tuple": {
"num": 43,
"str": "world"
}
}