我试图在一个句柄模板中的数组中指定一个项目的索引:

{
  people: [
    {"name":"Yehuda Katz"},
    {"name":"Luke"},
    {"name":"Naomi"}
  ]
}

用这个:

<ul id="luke_should_be_here">
{{people[1].name}}
</ul>

如果上面是不可能的,我将如何编写一个助手,可以访问数组中的特定项目?


当前回答

如果数组没有被命名(只有数组被传递给模板),也可以使用下面的语法:

  <ul id="luke_should_be_here">
  {{this.1.name}}
  </ul>

其他回答

如果未记录的功能并不是你的游戏,你也可以采用同样的方法:

Handlebars.registerHelper('index_of', function(context,ndx) {
  return context[ndx];
});

然后在模板中

{{#index_of this 1}}{{/index_of}}   

在我得到之前,我写了上面的内容

this.[0]

如果不自己写帮手,我不认为有人会用把手走得太远。

试试这个:

<ul id="luke_should_be_here">
{{people.1.name}}
</ul>
{{#each array}}
  {{@index}}
{{/each}}

如果你想第一个/最后一个取,请试试这个。

{{#each list}}

    {{#if @first}}
        <div class="active">
    {{else}}
        <div>
    {{/if}}

{{/each}}


{{#each list}}

    {{#if @last}}
        <div class="last-element">
    {{else}}
        <div>
    {{/if}}

{{/each}}

如果数组没有被命名(只有数组被传递给模板),也可以使用下面的语法:

  <ul id="luke_should_be_here">
  {{this.1.name}}
  </ul>