我有两种类型的JSON格式,一种是单个数据,另一种是JSON数组中的多个数据。
第一种JSON格式:
{
"data": {
"id": "1",
"artist": "Gotye",
"title": "Making Mirrors"
}
}
第二
{
"data": [
{
"id": "1",
"artist": "Gotye",
"title": "Making Mirrors"
},
{
"id": "99",
"artist": "uy",
"title": "uy"
},
{
"id": "100",
"artist": "yt",
"title": "yt"
},
{
"id": "101",
"artist": "65",
"title": "565"
},
{
"id": "102",
"artist": "6",
"title": "6"
},
{
"id": "103",
"artist": "y",
"title": "yy"
},
{
"id": "104",
"artist": "ty",
"title": "yt"
}
]
}
在骨干模型中,当我这样做时:
parse:function(response){ return response.data; }
对于第一个,它可以工作,我可以将JSON数据填充到视图,但对于第二个JSON,它没有。
我想知道是否有任何方法可以使主干解析功能将JSON格式标准化为骨干可替换格式。任何建议或任何解决方案将非常感谢。谢谢