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>

上一篇:Facebook统计事件接入及广告关联


下一篇:[BZOJ4804]欧拉心算