从handlebars.js中的partial访问父范围

时间:2015-02-02 13:34:42

标签: javascript templates handlebars.js

如何从部分访问#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/

1 个答案:

答案 0 :(得分:0)

如果您遇到同样的问题,请检查您的车把版本。我将把手更新到2.0版本,只使用{{@ root.index}}。