我想根据我传递带有他的值的特定属性来生成。这就是我想使用帮助器的方式:
<sometag @PossibleHelper(parameter)/>
在 PossibleHelper 做他的事情之后,这可能是结果:
<sometag attributeName="attributeValue"/>
我如何在助手中表达这一点?
@helper PossibleHelper(someType){
if(condition){
attributeName="attributeValue" //this is wrong
}
}