我有一个这样的对象,并希望在每个维度(简化的 json)中按时间(第一行,第二个点)对其进行排序:
[{
"type":"point"
},
{
"type":"line",
"children": [
{
"type":"point"
},
{
"type":"point"
},
{
"type":"line"
}
]
},
{
"type":"point"
}]
这个维度可能更深,并且彼此之间有更多的点/线。
排序后的输出将是这样的:
[{
"type":"line",
"children": [
{
"type":"line"
},
{
"type":"point"
},
{
"type":"point"
}
]
},
{
"type":"point"
},
{
"type":"point"
}]
谢谢