javascript – 在handlebars模板中显示hasMany ember关系中的第一项

前端之家收集整理的这篇文章主要介绍了javascript – 在handlebars模板中显示hasMany ember关系中的第一项前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。
我需要在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提前为您提供帮助

解决方法

使用Ember.Enumerable的 firstObject
{{thread.firstObject.fullName}}

如果要在很多地方使用它,最好将其定义为模型中的计算属性

App.Thread = DS.Model.extend({
  authors: DS.hasMany('author')

  firstAuthor: Ember.computed.alias('authors.firstObject')
});

并在模板中使用它:

{{firstAuthor.name}}
原文链接:https://www.f2er.com/js/159611.html

猜你在找的JavaScript相关文章