在我目前的spring-boot项目中,我实现了一个 AbstractTextChildModifierAttrProcessor 类来处理这样的标记:
<p get:property="xxx,yyy"></p>
它已处理到:
<p>zzz</p>
但是现在我正在寻找类似的东西,但是对于标签th:if
和<a>
这样使用:
th:if="..."
和
<a th:href="..."></a>
自定义处理器应作为标记的属性放置,并返回此属性的文本值。
有人可以使用相同的处理器 AbstractTextChildModifierAttrProcessor 或其他处理器来提示如何做到这一点?
答案 0 :(得分:0)
href
属性我通过使用类得到解决方案:
AbstractAttributeModifierAttrProcessor
在我使用的视图中:
get:href="Suporte,faq"
和th:if
标签我可以在课堂上得到类似的结果:
AbstractConditionalVisibilityAttrProcessor
在我使用的视图中:
get:if="Suporte,faq"
链接: