2016-10-19 13 views
0

ハンドルで定義されたネストされたテンプレートに、それは可能です:ハンドル - ネストされたテンプレート

<script id="template-parent" type="text/x-handlebars-template"> 
    <some markup here ...> 
    <script id="template-child" type="text/x-handlebars-template"> 
    <some markup from nested template here ... > 
    </script> 
</script> 

答えて

2

ハンドルバーは、あなたが他の場所からテンプレートのフラグメントを含めることができるようになります「パーシャル」と呼ばれる組み込みのヘルパーを持っています。 http://handlebarsjs.com/partials.html

関連する問題