我所做的是使用 Thymeleaf 属性,但我不想拥有例如额外的 div。
例如,我有这个
<div sec:authorize="hasRole('ROLE_ADMIN')">
This content is only shown to administrators.
</div>
但我想要这样的东西:
<sec:authorize="hasRole('ROLE_ADMIN')">
This content is only shown to administrators.
</>
这可能吗?