2017-02-12 60 views
1

我試圖發送一個字符串到我的Spring後端。我不想爲該字符串創建一個額外的對象。發送單個字符串/不是對象與Thymeleaf到Spring

<form name="f" th:action="@{/restaurant_SaveLayout}" method="post"> 
    <input type="hidden" value="trdz234"/> 
    <button type="submit"></button> 
</form> 

Spring告訴我我的RequestParam不存在。

@PostMapping("/restaurant_SaveLayout") 
public String restaurant_SaveLayout (@RequestParam String circles) { 
    return "restaurant_ShowArr"; 
} 

我也不想通過GET發送任何東西。

回答

1

您錯過了設置輸入的名稱。

<form name="f" th:action="@{/restaurant_SaveLayout}" method="post"> 
    <input type="hidden" name="circles" value="trdz234"/> 
    <button type="submit"></button> 
</form> 
相關問題