如何从部分访问#each父范围?
主要模板:
(out of each = {{index}})<br> {{!-- some index --}}
{{#each someItem}}
(in each, but not on partial = {{../index}}) {{!-- access to index from parent scope --}}
{{>part}}
{{/each}}
部分:
<div class="part">
(in partial: {{itemName}} - {{../index}}) {{!-- not working !!! --}}
</div>
这是问题小提琴: http://jsfiddle.net/0o8jpxjh/
答案 0 :(得分:0)
如果您遇到同样的问题,请检查您的车把版本。我将把手更新到2.0版本,只使用{{@ root.index}}。