Handlebars.js: How to access parent index in nested each?

有些话、适合烂在心里 提交于 2019-11-28 16:49:42

There is a syntax error in the example. The correct syntax is {{@../index}}.

We are looking at ways that we can support custom naming of these parameters in future versions of the language so this is easier to deal with. https://github.com/wycats/handlebars.js/issues/907

This worked for me:

{{#each company}}
{{setIndex @index}}
{{#each employee}}
  {{../index}}
{{/each}}
{{/each}}

JS:

Handlebars.registerHelper('setIndex', function(value){
    this.index = Number(value + 1); //I needed human readable index, not zero based
});

Just make sure the company object doesn't have index property.

Answer: {{@../index}}

From the Handlebars docs (see bottom of 'each' helper section):

"Nested each blocks may access the interation variables via depted paths. To access the parent index, for example, {{@../index}} can be used."

NOTE: I'm using v1.3 so it's at least that old.

REMINDER: Helpers are your last best option. 9/10 there is a better solution.

It looks like there's a new syntax in Ember v2.2.0. I tried all the answers here and they didn't work for me.

What I found worked was naming the parent loop's index and the child loop's index.

{{#each parents as |parent parentIndex|}}
    {{parentIndex}}
    {{#each children as |child childIndex|}}
        {{parentIndex}}
        {{childIndex}}
    {{/each}}
{{/each}}

registe an Helper method:

Handlebars.registerHelper('eachWithIndex', function(cursor, options) {
    var fn = options.fn, inverse = options.inverse;
    var ret = "";
    var idx = -1;
    //console.log(cursor);
    cursor.forEach(function(item){
        idx++;
        console.log(item.index);
        item.index = idx;
        ret+=fn(item);
    });
    return ret;
}); 

handlebars template:

{{#eachWithIndex outer}}
  {{#each inner}}
   {{../index}} // access outer index like this. I used hanlebars V1.3.0
   {{index}} // access inner index
  {{/each}}
{{/eachWithIndex}}
易学教程内所有资源均来自网络或用户发布的内容,如有违反法律规定的内容欢迎反馈
该文章没有解决你所遇到的问题?点击提问,说说你的问题,让更多的人一起探讨吧!