Json

时间:2017-04-11 18:10:29

标签: json

让我从像

这样的JSon对象开始
[
  {
    "id": 32837732,
    "composer": {
      "id": 536,
      "name": "Francis Poulenc"
    },
    "title": "Of Thee I Sing: Overture (radio version)"
  },
  {
    "id": 32837735,
    "composer": {
      "id": 245,
      "name": "George Gershwin"
    },
    "title": "Concerto in F : I. Allegro"
  },
  {
    "id": 32837739,
    "composer": {
      "id": 245,
      "name": "George Gershwin"
    },
    "title": "Concerto in F : II. Adagio"
  }
]

是否可以以干净的声明方式获得像Json一样的

{
'composer': [
                {
                'id': '536',
                'name': 'Francis Poulenc'
                },
                {
                'id': '245',
                'name': 'George Gershwin'
                },
        ]
}

这是每个作曲家的唯一子值(id和名称)?

1 个答案:

答案 0 :(得分:0)



contains