thymeleaf:处理元素的属性

时间:2015-09-24 11:55:54

标签: spring attributes spring-boot thymeleaf processor

在我目前的spring-boot项目中,我实现了一个 AbstractTextChildModifierAttrProcessor 类来处理这样的标记:

<p get:property="xxx,yyy"></p>

它已处理到:

<p>zzz</p>

但是现在我正在寻找类似的东西,但是对于标签th:if<a>这样使用:

th:if="..."

<a th:href="..."></a>

自定义处理器应作为标记的属性放置,并返回此属性的文本值。

有人可以使用相同的处理器 AbstractTextChildModifierAttrProcessor 或其他处理器来提示如何做到这一点?

1 个答案:

答案 0 :(得分:0)

href属性我通过使用类得到解决方案:

AbstractAttributeModifierAttrProcessor

在我使用的视图中:

get:href="Suporte,faq"

th:if标签我可以在课堂上得到类似的结果:

AbstractConditionalVisibilityAttrProcessor

在我使用的视图中:

get:if="Suporte,faq"

链接: