gpt4 book ai didi

thymeleaf - 如何使用 Thymeleaf 模板正确忽略/隐藏元素

转载 作者:行者123 更新时间:2023-12-04 19:06:41 30 4
gpt4 key购买 nike

我最终得到了很多代码,例如:

<section layout:fragment="content" th:remove="tag">
<p>content section</p>
</section>


<section th:switch="${session['SOME_KEY'" th:remove="tag">
<section th:case="${'BadCredentialsException'}" th:remove="tag">
Invalid username/password
</section>
<section th:case="${'UsernameNotFoundException'}" th:remove="tag">
Invalid username/password
</section>
<section th:case="${'DisabledException'}" th:remove="tag">
Account is blocked, contact your admin
</section>
<section th:case="*" th:remove="tag">
Something went wrong
</section>
</section>

请注意 th:remove="tag"在这种情况下不显示部分标签,因为我不需要它们。

这是执行此操作的正确方法吗?

最佳答案

由于 Thymeleaf 2.1 有一个合成 th:block标签可用。它是在执行后删除的容器属性(请参阅 documentation )。

所以你最终得到这样的代码:

<th:block layout:fragment="content">
<p>content section</p>
</th:block>

关于thymeleaf - 如何使用 Thymeleaf 模板正确忽略/隐藏元素,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/22953828/

30 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com