我正在使用 underscore.js 和主干为应用程序创建一些视图。这些视图都有相同的前几行,但是根据它们是什么类型的子类而有所不同。有没有一种有效的方法来组合模板,以便我可以将一个单一的“主”模板插入到所有其他模板中?
代码示例:
<script type="text/template" id="template-1">
{{ name }}
<span>{{ type }}</span>
<div>
<some view specific html>
</div>
</script>
<script type="text/template" id="template-2">
{{ name }}
<span>{{ type }}</span>
<div>
<some view specific html>
</div>
</script>