Thymeleaf select 反显 默认选中

后台代码

List<ExamTestPaperDO> list = examTestPaperService.list(map);
model.addAttribute("testPaper",list);
model.addAttribute("testPaperId",request.getParameter("testPaperId"));

页面代码

关键代码th:selected="${test.id eq testPaperId}"

<select  id = "testPaperId" name="testPaperId" class="form-control">
    <option value="">所有</option>
    <option th:each="test : ${testPaper}" th:value="${test.id}" th:text="${test.name}" th:selected="${test.id eq testPaperId}"></option>
</select>
 
  

 

posted @ 2020-06-17 15:52  野狼谷  阅读(1546)  评论(0)    收藏  举报