我有两张桌子,一张是帖子,另一张是评论。我有一个只有帖子列表的页面,如果它包含评论,我需要显示一个帖子图标。
App.Comment = DS.Model.extend({
user_name: DS.attr('string'),
user_id: DS.attr('number'),
comment: DS.attr('string')
});
App.Post = DS.Model.extend({
user_id: DS.attr('number'),
comments: DS.hasMany('App.Comment',{embedded:true}),
这是一个示例车把
1. testpost <show icon only if comment not empty>