次のようなサーバー応答があります。
comments: [
0: {
body: "test3",
created_at: "2013-06-27T22:27:47Z",
user: {
email: "test@test.com",
id: 1,
name: "Tester"
}
}
]
そして残り火モデル:
App.Comment = DS.Model.extend({
user: DS.belongsTo('App.User'),
body: DS.attr('string')
});
App.User = DS.Model.extend({
name: DS.attr('string'),
email: DS.attr('string'),
});
サーバーの応答から ember ユーザー モデルを作成するにはどうすればよいですか?