我必须将数据从 html 页面(输入文本字段很少的简单表单)发送到页面控制器,然后发送到数据库。我正在使用 thymeleaf 2.0.17,spring 3.0。我搜索并检查了一些解决方案,但没有奏效。也许有人遇到了同样的问题并找到了一些好的解决方案。请帮忙。谢谢
问问题
73991 次
1 回答
55
您可以在http://www.thymeleaf.org/doc/tutorials/2.1/thymeleafspring.html#creating-a-form中找到一个示例 。
正如教程所建议的,您需要使用th:object
,th:action
和th:field
在 Thymeleaf 中创建一个表单。
它看起来像这样:
控制器:
@RequestMapping(value = "/showForm", method=RequestMethod.GET)
public String showForm(Model model) {
Foo foo = new Foo();
foo.setBar("bar");
model.addAttribute("foo", foo);
...
}
@RequestMapping(value = "/processForm", method=RequestMethod.POST)
public String processForm(@ModelAttribute(value="foo") Foo foo) {
...
}
html:
<form action="#" th:action="@{/processForm}" th:object="${foo}" method="post">
<input type="text" th:field="*{bar}" />
<input type="submit" />
</form>
Foo.java:
public class Foo {
private String bar;
public String getBar() {
return bar;
}
public void setBar(String bar) {
this.bar = bar;
}
}
希望这可以帮助。
于 2013-07-16T14:04:19.830 回答