Ember 的 RESTAdapter 期望 JSON 响应的组织方式与 L4 Eloquent 的默认集合略有不同。
来自 Ember 指南:
{
"post": {
"id": 1,
"title": "Rails is omakase",
"comment_ids": [1, 2, 3]
},
"comments": [{
"id": 1,
"body": "But is it _lightweight_ omakase?"
},
{
"id": 2,
"body": "I for one welcome our new omakase overlords"
},
{
"id": 3,
"body": "Put me on the fast track to a delicious dinner"
}]
}
有没有办法让 Ember 映射到 L4 集合?