请写出 thymeleaf获取后端Integer列表数据回显在下拉框中
时间: 2023-04-11 10:01:02 浏览: 173
thymeleaf回显数据
5星 · 资源好评率100%
可以使用th:each遍历Integer列表,将每个元素作为下拉框的选项,使用th:selected属性判断哪个选项被选中,示例代码如下:
<select>
<option th:each="num : ${integerList}"
th:value="${num}"
th:text="${num}"
th:selected="${num == selectedNum}">
</option>
</select>
其中,integerList是后端传来的Integer列表,selectedNum是当前选中的数字。
阅读全文