thymeleaf:访问list,map等

Posted 小溪(潺潺流水,润泽千里)

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了thymeleaf:访问list,map等相关的知识,希望对你有一定的参考价值。

1.map

在后端放入一个map

Map<String, String> mapDict = serviceBaseDict.selectMap(ConstantDictType.SYSINFO);
model.addAttribute("mapDict", mapDict);

在页面中访问这个map

<b th:value="${mapDict[‘sysInfo’]}">系统标题</b>

也可以这样访问:

<b th:value="${mapDict.get(‘sysInfo’)}">系统标题</b>

以上是关于thymeleaf:访问list,map等的主要内容,如果未能解决你的问题,请参考以下文章

thymeleaf 如何取map的值

如何在 Thymeleaf 中循环遍历 Map

thymeleaf循环遍历

使用片段时 Intellij 无法正确识别 Thymeleaf 模型变量

Spring boot:thymeleaf 没有正确渲染片段

zbb20171221 thymeleaf th:each