Counter for handlebars #each

后端 未结 8 951
小鲜肉
小鲜肉 2021-02-04 02:29

In Handlebars, say i have a collection of names how can i do

{{#each names}}
{{position}}
{{name}}
{{/each}}

where {{position}} is

8条回答
  •  -上瘾入骨i
    2021-02-04 02:56

    Handlebars.registerHelper("counter", function (index){
        return index + 1;
    });
    

    Usage:

    {{#each names}}
        {{counter @index}}
        {{name}}
    {{/each}}
    

提交回复
热议问题