如何在Thymeleaf表中过滤数据

时间:2019-06-20 15:10:35

标签: spring-boot thymeleaf dandelion

我是Thymeleaf的新开发人员(Spring-Boot 2.1.5环境)。 我想对输入中的列表进行过滤。当我在输入中输入客户名称时,它会显示在表格上(没有提交按钮)。

<form th:action="@{/clientslistbypage}" method="get" th:object="${Clients}" class="form-inline"  >
<input type="text" name="client" th:value="${client}"  id="clientSearch"     >
<!-- <input type="submit" name="clients" th:value="Search">-->
</form>

我尝试了Projection and Collection函数,但是我不知道如何将输入值动态分配给Collection公式。($ {Clients.?[firstName> ='在这里我要插入Searche Input的值' ]})

<tr th:each = "c: ${Clients.?[firstName >='']}"  >
<td  th:text = "${c.id}"></td>
<td  th:text = "${c.firstName}"></td>
<td  th:text = "${c.LAST_NAME} "></td>
</tr>

我尝试了DANDELION,但不幸的是,不要在Spring-Boot 2.1.5下运行。

欢迎任何建议,教程或示例

0 个答案:

没有答案