我正在尝试使用 thymeleaf 为我的ModelAndView
using模型中的每个元素生成编辑和删除模式th:each
。
模态确实是根据元素的 id 字段创建的并具有唯一的 id。我遇到的问题是元素中的任何值都没有被解析为input
s 以使用户能够查看当前值。
它们显然在那里,因为视图还有一个表格,其中显示每个元素的值以及切换模式的锚点。
这是我如何做的一些示例代码:
<div th:each="f : ${foos}" th:id="um- + ${f.id}" class="modal fade"
tabindex="-1" role="dialog">
...
<form role="form" th:action="@{/foo/update}" th:object="${foo}" th:method="post">
<input type="hidden" th:field="*{id}" th:value="${f.id}"/>
<fieldset class="form-group">
<label for="bar">Bar</label>
<input th:field="*{bar}" th:value="${f.bar}" class="form-control"
id="bar" type="text" placeholder="Bar"/>
</fieldset>
...
</form>
...
</div>
如何为模型中的每个元素生成编辑模式?我不确定为什么 thymeleaf 无法从模型元素中获取字段的值。