Slide 13
Slide 13 text
Ember Data
13
App.Article = DS.Model.extend({
title: DS.attr('string'),
content: DS.attr('string'),
comments: DS.hasMany('comment')
});
App.Comment = DS.Model.extend({
author: DS.attr('string'),
content: DS.attr('string'),
article: DS.belongsTo('article')
});
let article = this.store.find('article', 32);
GET /article/32 HTTP/1.1…
article.get('comments').forEach(...
GET /comments?id[]=4711&id[]=4712 HTTP/1.1…