0

今天我坚持使用带有 POST 方法的弹簧表单,它不会将发布的项目提供给我想要的控制器。这是我的代码。

控制器.java

@Controller
@RequestMapping("/cart")
public class CartController extends CommonController
{
    @RequestMapping(value = "/add", method = RequestMethod.POST)
    public ModelAndView addCart(@ModelAttribute("productList") Item item, BindingResult result,Model model){
         System.out.println(item.getId()); /// <-- doesn't gives me the ID
         return new ModelAndView("cart");
    }
 }

产品列表.jsp

/// Loop through the products of search itemlist and generates the forms with the correct items
<c:forEach var="item" items="${productList.items}" varStatus="status">
                    ${item.name}
        <div class="addCart">
        <c:url value="/cart/add.html" var="addURL" />
            <form:form method="POST" action="${addURL}" modelAttribute="productList">
                <form:hidden path="items[${status.index}].id"/>
                <input type="submit" class="addCartBtn" value="Add to cart" />
            </form:form>
        </div>

BackingBean.java

public class SearchForm implements Serializable
{
   private Collection<Item> items;
   private String term;
   // getters and setters
}

${productList} 是遍历所有项目的 backingbean。

我真的不知道问题出在哪里,为什么它没有给我通过 POST 传递的正确数据。非常感谢。

4

1 回答 1

2

将你的 spring:hidden 标签隐藏为普通的 html 隐藏标签:

<form:hidden path="items[${status.index}].id"/>

<input type="hidden" name="id" value="${item.id}"/>
于 2012-12-17T14:26:23.003 回答