我在 thymeleaf 中创建一个页面,在其中从控制器检索列表以安装表,在此表中有一个选择字段,我在其中检索值列表但我无法显示已经存在的值检索的数据库可以帮助我吗?请!
我已经尝试使用以下命令但无法恢复该值:
th:field="*{valoresAtributo[__${stat.index}__].valorUsuario}"
我收到以下错误: Bean 名称的 BindingResult 和普通目标对象都不能用作请求属性。
<table class="table table-sm table-striped table-bordered" id="dataTable">
<thead>
<tr><th colspan="4">Valores dos Atributos</th></tr>
</thead>
<tbody>
<tr class="text-black">
<td rowspan="2"> Atributo</td>
<td rowspan="2"> Local</td>
<td>Aplicação</td>
<td>Usuário</td>
</tr>
<tr>
<td id="vlAppl"></td>
<td id="vlUser"></td>
</tr>
<tr th:each="valorAtributo, stat : ${valoresAtributo}">
<td th:text="${valoresAtributo[__${stat.index}__].nomeAtributo}"></td>
<td th:text="${valoresAtributo[__${stat.index}__].valorLocal}"></td>
<td th:text="${valoresAtributo[__${stat.index}__].valorAplicaco}"></td>
<td>
<select class="form-control col-md-10" th:field="*{valoresAtributo[__${stat.index}__].valorUsuario}">
<option th:each="option : ${T(com.jequiti.JequitiIntegrador.controller.AtributoController).test(valorAtributo.sqlValidacao)}"
th:value="${{option.valorAtributo}}"
th:text="${option.significadoAtributo}">
</option>
</select>
</td>
</tr>
</tbody>
</table>
我希望该字段显示当前在数据库中的值和值列表中的选项。
谢谢你们!
缥缈止盈
慕无忌1623718
相关分类