假设我想建立一个动态表。 我如何运行的每个内的每个。 如果表示当前项目的唯一varible是this
。
{{#each by_width}}
{{#each by_height}}
{{this}} // how do refer to this from the outer loop?
{{/each}}
{{/each}}
假设我想建立一个动态表。 我如何运行的每个内的每个。 如果表示当前项目的唯一varible是this
。
{{#each by_width}}
{{#each by_height}}
{{this}} // how do refer to this from the outer loop?
{{/each}}
{{/each}}
您可以使用../
来访问父在车把模板:
{{#each by_width}}
{{#each by_height}}
w: {{../this}}
h: {{this}}
{{/each}}
{{/each}}
当然,这假定by_height
是每个元素中by_width
,如果他们在顶层俩都那么你需要另一个../
:
{{#each by_width}}
{{#each ../by_height}}
w: {{../this}}
h: {{this}}
{{/each}}
{{/each}}
演示: http://jsfiddle.net/ambiguous/PNTXw/
不要写{{../this}}
但{{..this}}