1

我正在尝试使用 thymeleaf 为我的ModelAndViewusing模型中的每个元素生成编辑和删除模式th:each

模态确实是根据元素的 id 字段创建的并具有唯一的 id。我遇到的问题是元素中的任何值都没有被解析为inputs 以使用户能够查看当前值。

它们显然在那里,因为视图还有一个表格,其中显示每个元素的值以及切换模式的锚点。

这是我如何做的一些示例代码:

<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 无法从模型元素中获取字段的值。

4

1 回答 1

3

这实际上不是一个好方法。除了它不起作用之外,使用循环显然会n为集合创建模态。

最有效的解决方案是提供一个单一的模式,该模式将通过 Ajax 调用进行填充和提交。

这个简洁的 Spring Boot 应用程序包含所有相关代码。

于 2016-01-29T04:31:36.750 回答