如何存储所选值是Thymeleaf

时间:2019-04-03 11:05:30

标签: spring-boot thymeleaf

我正在从事Spring Boot-thymeleaf项目。我想在我的项目中应用搜索功能。当我选择选项字段并单击搜索时,列表应该出现在页面中,但我不知道如何将所选值存储在变量中并将其发送到url。我的代码如下:

<label for="">User Name</label> 
<select class="form-control">                                                
<option th:each="user: ${users}"                                                 
 th:text="${user.username}" th:value="${user.id}"></option>                                      
</select>

<a th:href="@{/users/search/{userId}(userId=${user.id})}"><button type="button"  
    class="btn btn-primary mt-4">Search</button></a>

0 个答案:

没有答案