gpt4 book ai didi

java - 如何在 Thymeleaf 中静态初始化 Map?

转载 作者:行者123 更新时间:2023-12-02 02:40:04 24 4
gpt4 key购买 nike

我有以下thymeleaf导航栏 html,并希望通过使用 th:each 重复创建链接来缩短它来自静态Map :

<div id="navbar" class="collapse navbar-collapse">
<ul class="nav navbar-nav">
<li th:classappend="${#httpServletRequest.getRequestURI() == '/home' ? 'active':''}">
<a href="/home">Home</a></li>
<li th:classappend="${#httpServletRequest.getRequestURI() == '/pax' ? 'active':''}">
<a href="/pax">Person</a></li>
<li th:classappend="${#httpServletRequest.getRequestURI() == '/about' ? 'active':''}">
<a href="/about">About</a></li>
</ul>
</div>

问题是:如何初始化静态 Map在 html 页面内,无需绑定(bind)到后端 Controller ?该映射应该键值代表“url 路径”和“链接名称”之间的映射。

在 Java 代码中,这将是:

new HashMap<String, String>() {{
put("/pax", "Person");
}};

但是我怎样才能在没有后端代码的情况下用普通的 thymeleaf html 实现这一点呢?

类似于:

<li th:each="entry : ${HOW TO HASHMAP}"
th:classappend="${#httpServletRequest.getRequestURI() == '/'+entry.getKey()' ? 'active':''}">
<a th:href="'/'+${link.getKey()}" th:text="$entry.getValue()"/>
</li>

最佳答案

Spring expression inline maps 。 (括号之间的空格 - ${ { - 很重要,否则表达式将使用 thymeleaf 双括号语法进行解释。)

<li th:each="entry: ${ {home:'Home', pax:'Person', about:'About'} }"
th:classappend="${#httpServletRequest.getRequestURI() == '/' + entry.key ? 'active' : ''}">
<a th:href="'/' + ${entry.key}" th:text="${entry.value}"/>
</li>

关于java - 如何在 Thymeleaf 中静态初始化 Map?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/45637439/

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