Thymeleaf页面 遍历Map 输出Key和Value 2021-2-05 10:15 | 1,488 | 0 | 前端 26 字 | 几秒读完 后台数据 Tymeleaf遍历输出Key和Value <tr th:each="item,cont:${content.printValues.values}"> <td th:text="${cont.current.key}"></td><!-- key--> <td th:text="${… Thymeleaf
thymeleaf页面 th:each迭代循环对象集合到select下拉框 2020-12-23 12:41 | 1,338 | 0 | 前端 25 字 | 几秒读完 <select name="ChanneltypeID" class="layui-select"> <option th:each="dict : ${type}" th:value="${dict.ChannelTypeID}" th:text="${dict.ChannelTypeName }"> </selec… Thymeleaf