我正嘗試使用springMvc和thymeleaf創建編輯表單。輸入字段沒有使用從控制器返回的值填充。輸入字段在Thymeleaf Spring MVC中顯示爲空白
控制器:
@RequestMapping(value = "updatecustomer")
public String search(@ModelAttribute("customerDto") CustomerDto customerDto, Model model) {
Customer customer = service.search(customerDto);
model.addAttribute("customer", customer);
return "mypage";
}
形式:
<input type="text" id="email" name="email" value="">
調試示出的值是存在於控制器並返回到查看但電子郵件輸入:在瀏覽器
<form method="post" th:action="@{updatecustomer}" th:object="${customerDto}">
<label>Email: </label><input type="text" th:field="*{email}" />
<input type="submit" />
</form>
生成html值爲空白。
請指教。