0
我有以下結構:嵌套對象映射RestKit
獲取手冊:
//請求
{
"type": "handbook",
"hash": ""
}
//響應
{
"body": {
"songs": [
{
"id": 1,
"length": 1231,
"name": "song 1"
},
{
"id": 2,
"length": 3155,
"name": "song 2"
}
],
"setlists": [
{
"id": 1,
"name": "setlist1",
"songs": [
{
"id": 1
},
{
"id": 2
}
]
},
{
"id": 2,
"name": "set list 2",
"songs": [
{
"id": 3
},
{
"id": 4
},
{
"id": 5
}
]
}
]
},
"state": true,
"type": "handbook"
}
我需要解決的建議兩個問題: 1)如何在響應的「主體」中映射對象? 2)我如何將Setlist連接到它的歌曲?