我需要在hasMany关系中显示第一项
基本上一个帖子可以有多个作者,但我只需要在特定模板中显示第一个
我有以下json
{
threads: [
{
id: 1,
authors: [2,3]
}
],
authors: [
{
id: 2,
fullname: "foo"
},
{
id: 3,
fullname: "bar"
}
]
}
以下型号
App.Thread = DS.Model.extend({
authors: DS.hasMany('author')
});
App.Author = DS.Model.extend({
fullname: DS.attr('string')
});
现在在我的模板中,我要做{{thread.authors[0].fullname}}
之类的事情,但它不起作用。我根据把手的语法尝试了thread.authors.0.fullname
,但没有任何改变。
Thnx提前为您提供帮助
答案 0 :(得分:18)
使用Ember.Enumerable的firstObject
:
{{thread.firstObject.fullName}}
如果您打算在很多地方使用它,最好将它定义为模型中的计算属性:
App.Thread = DS.Model.extend({
authors: DS.hasMany('author')
firstAuthor: Ember.computed.alias('authors.firstObject')
});
并在模板中使用它:
{{firstAuthor.name}}