我有一个结构如下的json。我想删除数组,并使其成为一个对象,因为在该数组中只有一个元素。什么是最好的方法来做到这一点。我不想在代码中硬编码任何节点以外的students
和student
节点
输入JSON
{
"students": {
"a": "qw",
"b": "er",
"student": [
{
"Id": "1",
"details": {
"q": "12",
"w": "wer",
"e": "rty",
"r": "yui"
}
}
]
}
}
输出JSON
{
"students": {
"a": "qw",
"b": "er",
"student": {
"Id": "1",
"details": {
"q": "12",
"w": "wer",
"e": "rty",
"r": "yui"
}
}
}
}
1条答案
按热度按时间velaa5lx1#
你可以试试这个