在spring boot中编辑时在multiselect中选择项

balp4ylt  于 2021-08-20  发布在  Java
关注(0)|答案(1)|浏览(365)

我需要在编辑对象时设置所选项目,如果有人能告诉我如何将spring boot与thymeleaf结合使用。我附上了我开发的图形界面的图像,它位于参考列中,我需要在其中加载我想要编辑对象时所选的项目

jljoyd4f

jljoyd4f1#

我用这个解决了它 <option th:selected="${it.getuaguas().contains(matriz)}" th:each="matriz:${it.parametro.criterio}" th:value="${matriz.id}" th:text="${matriz.descripcion}"></option>

相关问题