标签:pre list ant order sel sele 后端 base sys
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>
标签:pre list ant order sel sele 后端 base sys
原文地址:https://www.cnblogs.com/huiy/p/9001364.html