我有一個input
領域,其價值是由控制器設置由response.query
,在模板中我也有執行read
和delete
呼籲在query
進入id
兩個環節。這是模板。Thymeleaf:通過輸入文本參數HREF
<div class="input-group">
<input type="text" th:value="*{response.query}" />
<div class="input-group-btn">
<ul class="dropdown-menu dropdown-menu-right">
<li><a href="#" th:href="@{/read/{id}(id=response.query)}">Read</a></li>
<li><a href="#" th:href="@{/delete/{id}(id=response.query)">Delete</a></li>
</ul>
</div>
</div>
不幸的是,href
參數總是被作爲null
通過。是否有替代方法?
這是非常有幫助的 – Hinotori