我有一个简单的对象层次结构,包括:
Category
String name
List childCategories;
我想以通用的方式使用把手来表示这种布局,但我无法理解如何嵌套布局。鉴于这种布局:
<script id="categories-template" type="text/x-handlebars-template">
{{#categories}}
<ul >
<li>
<span>{{name}}</span>
<div>{{#childCategories}}{{/childCategories}}</div>
</li>
</ul>
{{/categories}}
</script>
为所有子类别重用现有类别模板的最佳方法是什么?是否有必要注册处理程序?有更简单的方法吗?
答案 0 :(得分:16)
两个模板
<!-- language: html -->
<script id="categories-template" type="text/x-handlebars-template">
{{#categories}}
<ul >
<li>
<span>{{name}}</span>
{{#if childCategories}}
<div>{{&testHelper childCategories}}</div>
{{/if}}
</li>
</ul>
{{/categories}}
</script>
<script id="categories-nested" type="text/html">
{{&testHelper categories}}
</script>
和一个把手助手
Handlebars.registerHelper('testHelper', function(info) {
var template = Handlebars.compile($('script#categories-template').html());
return template(categories);
});
答案 1 :(得分:-2)
<script id="categories-template" type="text/x-handlebars-template">
<ul>
{{#each categories}}
<li>
<span>{{name}}</span>
<div>
<ul>
{{#each childCategories}}
<li><!-- content: blah-blah-blah --></li>
{{/each}}
</ul>
</div>
</li>
{{/each}}
</ul>
</script>