我想和你一起做表格 th:object
对于数组的每个元素。但我得到了错误。问题是 th:object
仅用于保存在模型上的对象。如何使用 th:object
及 th:field
在…上 th:each
,或其他解决方法?
<tr th:each="sect: ${process.sectionData}" th:if="${sect.sectionType==1}">
<form th:action="@{'/process/section/save/' + ${sect.id} }" method="post" th:object="${sect}">
<td>
<button>
save
</button>
</td>
<td>
<input
type="text"
th:field="*{sect.name}"
class="m-inline"
placeholder="Страна проведения"/>
</td>
</form>
</tr>
1条答案
按热度按时间iih3973s1#
th:field
只是设置name
,id
,及value
输入字段的名称。您应该能够做到这一点并使其正常工作: