私は次のようなことをすることができますか?
<script type="text/template" id="header">
yo
</script>
<script type="text/template" id="body">
{>"header"/}
whats up
</script>
<script>
// I'm just citing a backbone example...
this.z = 'x';
dust.loadSource(dust.compile($('#body').html(),this.z));
dust.render(this.z, null, function(err, out) {
_self.$el.html(out);
});
</script>
<script src="dust-full-1.2.0.js"></script>
パーシャルをプリコンパイルせずに、同様の方法でパーシャルをレンダリングすることは可能ですか?
使用時に依存部分をプリコンパイルする再帰的な方法はありdust.render()
ますか?