Laravel 4 Collections和Ember-DATA JSON

时间:2013-06-06 04:23:28

标签: ember.js laravel ember-data laravel-4

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系列?

1 个答案:

答案 0 :(得分:2)

您需要覆盖序列化程序才能支持laravel的json格式。

请参阅:

希望它有所帮助。