私は彼の値を持つ特定の属性を渡すものに応じて生成したいと考えています。これは私がヘルパーを使いたい方法です:
<sometag @PossibleHelper(parameter)/>
PossibleHelperが自分のことをした後、これが結果になる可能性があります:
<sometag attributeName="attributeValue"/>
ヘルパーでそれをどのように表現できますか?
@helper PossibleHelper(someType){
if(condition){
attributeName="attributeValue" //this is wrong
}
}