我需要在编辑对象时设置所选项目,如果有人能告诉我如何将spring boot与thymeleaf结合使用。我附上了我开发的图形界面的图像,它位于参考列中,我需要在其中加载我想要编辑对象时所选的项目
jljoyd4f1#
我用这个解决了它 <option th:selected="${it.getuaguas().contains(matriz)}" th:each="matriz:${it.parametro.criterio}" th:value="${matriz.id}" th:text="${matriz.descripcion}"></option>
<option th:selected="${it.getuaguas().contains(matriz)}" th:each="matriz:${it.parametro.criterio}" th:value="${matriz.id}" th:text="${matriz.descripcion}"></option>
1条答案
按热度按时间jljoyd4f1#
我用这个解决了它
<option th:selected="${it.getuaguas().contains(matriz)}" th:each="matriz:${it.parametro.criterio}" th:value="${matriz.id}" th:text="${matriz.descripcion}"></option>