Thymeleaf请求参数

时间:2018-12-11 17:14:06

标签: parameters request thymeleaf

我正在使用百里香叶和弹簧靴,我想向控制器方法发送请求参数,但是百里香叶也发送空值,我该如何仅发送实际具有值的参数。

     <form class="col s12" th:action="@{/browse}" method="get">
           <input id="newStatusName" th:name="status">
           <input id="driverName" th:name="driver">
           <input id="vehicleName" th:name="vehicle">
           <button> Search </button>
     </form>

问题是当我提交表单时没有在输入中写入任何内容时,我得到了url:

http://localhost:8090/browse&status=&driver=&vehicle=

如果没有值,我想使用普通网址:

http://localhost:8090/browse

0 个答案:

没有答案