見栄えの良いテンプレート/呼び出しパターンにはデフォルト値が含まれていますか?
テンプレートが与えられた場合:
template.html
<template data-sly-template.tmpl=${ @ foo='bar', baz='buzz' }>
<p>the value of foo is ${foo}>
</template>
次のように呼び出されると仮定します。
<sly data-sly-use.myTemplate="template.html"
data-sly-call="${myTemplate.tmpl}"/>
次の出力が必要です。
<p>the value of foo is bar</p>
これは可能ですか?通常はデフォルトで「true」のフラグがあるヘルパーでこれを利用したいのですが、特定のケースでは false に設定できるようにしたいと考えています。
ありがとうございました