如何使用百里香叶传递两个对象?

时间:2013-04-20 15:53:28

标签: java html spring thymeleaf

我的问题如下:

我有2个不同的对象,我要从单个表单中填充。

使用1个对象,我只是在newFoo.html中执行:

<form th:object="${foo} th:action="@{/foo}" method="post">
    <input type="text" th:field="*{name}"/>
    <button type="submit">Go</button>
</form>

并在FooController中:

@RequestMapping(value = "/foo/new", method = RequestMethod.GET) 
public String newFoo(final Foo foo, Model model) { 
    return "newFoo"; 
} 

@RequestMapping(value = "/foo/new", method = RequestMethod.POST) 
public String saveFoo(final Foo foo, final BindingResult bindingResult, Model model) { 
    fooService.save(foo); 
    return "redirect:/foo/new"; 
} 

假设我有另一个带有“status”变量的对象栏。如何传递该对象以便我可以在同一表单中提交输入?

喜欢:

<form th:object="${foo} && ${bar}" th:action="@{/foo}" method="post">
    <input type="text" th:field="*{name}"/>
    <input type="text" th:field="*{status}"/>
    <button type="submit">Go</button>
</form>

到目前为止,我尝试使用th:object中的fieldset,这不起作用,我试图将两个:对象放在表单中,这也不起作用。

我找到的唯一方法是构建一个包含这两个对象的其他对象,然后传递它。这很好,但我不能创造那种对象,这是无稽之谈(即使它有效)。

当然,这里的对象并不像Foo和Bar那么简单,否则我会合并这两个。但那不是我能做的。

甚至可以传递两个这样的对象来在表单中使用吗?

谢谢。

2 个答案:

答案 0 :(得分:22)

我认为您不需要使用两个th:objects。只需使用th:value

即可
<form th:action="@{/foo}" method="post">
      <input type="text" th:value="${foo.name}" name="name"/>
      <input type="text" th:value="${bar.status}" name="status"/>
      <button type="submit">Go</button>
</form>

我认为Spring在控制器方面足够聪明,可以使用它的映射技术将你的字段映射到正确的命令对象foo或bar。

答案 1 :(得分:1)

我使用div标签将第二个对象的表单输入括起来,并添加了一个th:object .....控制器对其进行了处理并将其添加到数据库中。

<form method=post th:object="${object1}" >
   <div th:object="${object2}" >

      code......

   </div> 
   <input type="submit" />
</form>