thymeleaf 遍历 HashMap
时间: 2023-11-13 17:02:33 浏览: 133
可以使用 th:each 指令来遍历 HashMap。例如:
```
<table>
<tr th:each="entry : ${map}">
<td th:text="${entry.key}"></td>
<td>:</td>
<td th:text="${entry.value}"></td>
</tr>
</table>
```
这将遍历名为 “map” 的 HashMap,并在表格中显示每个键值对。
相关问题
如何在Thymeleaf中传递复杂的图表数据结构?
在Thymeleaf模板引擎中,如果你需要传递复杂的图表数据结构,如JSON或对象模型,你可以这样做:
1. **Model绑定**: 将数据模型包含在你的控制器方法返回的对象中。例如,假设你有`ChartData`对象表示复杂的数据结构:
```java
@PostMapping("/generate-chart")
public String generateChartData(@ModelAttribute("chartData") ChartData data) {
// ... 生成并处理数据...
return "yourTemplate.html";
}
```
2. **将数据放入Model**: 在方法返回前,将`ChartData`对象添加到视图模型(`model`)中:
```java
Map<String, Object> model = new HashMap<>();
model.put("chartData", yourComplexChartData);
return "yourTemplate.html", model;
```
3. **在模板中使用**: 在`yourTemplate.html`中,你可以使用Thymeleaf的表达式语言(`th:`)来访问这个数据。比如,如果数据是一个JSON对象,你可以使用`th:text`标签展示:
```html
<div th:text="${chartData | json}"></div>
```
或者使用特定的库(如Highcharts、ECharts等)来解析和渲染数据。
4. **利用Thymeleaf特性**: Thymeleaf支持`th:block`标签,可以根据条件显示不同内容,可以嵌套循环遍历复杂数据结构。
阅读全文