我正在创建一个带有 select 标记的表单,如下所示:
<form th:object="${version}" method="post" class="form-horizontal">
...
<div class="control-group" th:classappend="${#fields.hasErrors('product')} ? 'error'">
<label class="control-label" for="product" th:text="#{version.product}">Product</label>
<div class="controls">
<select id="product" th:field="*{product}">
<option value="" th:text="#{common.select.prompt}"></option>
<option th:each="p : ${productList}" th:value="${p.id}" th:text="${p.name}"></option>
</select>
<span class="help-inline" th:errors="*{product}"></span>
</div>
</div>
...
</form>
DomainClassConverter
类Spring Data JPA
有助于在我提交表单时自动将所选对象转换id
为实体。也应该不为空(我在类中Product
的字段上使用。product
@NotNull
product
Version
我遇到的问题 - 当我回来编辑数据时,Product
没有选择。
如果我select
这样修改(th:field
和th:errors
):<-- p.s. is not a sad smile
<select id="product" th:field="*{product.id}">
<option value="" th:text="#{common.select.prompt}"></option>
<option th:each="p : ${productList}" th:value="${p.id}" th:text="${p.name}"></option>
</select>
<span class="help-inline" th:errors="*{product.id}"></span>
然后当我回来编辑它时它被选中,但验证器不起作用(product
总是实例化,即使选择的 id 是null
)。
它看起来像一个非常常见的场景(从列表中选择一个实体),但我找不到任何好看的例子。请分享秘密知识。