Thymeleaf页面 遍历Map 输出Key和Value
thymeleaf页面 th:each迭代循环对象集合到select下拉框
后台数据 Tymeleaf遍历输出Key和Value <tr th:each="item,cont:${content.printValues.values}"> <td th:text="${cont.current.key}"></td><!-- key--> <td th:text="${…
<select name="ChanneltypeID" class="layui-select"> <option th:each="dict : ${type}" th:value="${dict.ChannelTypeID}" th:text="${dict.ChannelTypeName }"> </selec…