如何购物车中的记录
我是用session来获取购物车对象,代码如下
HttpSession session = request.getSession();
HashMap cart = (HashMap) session.getAttribute("cart");
if (cart == null) {
cart = new HashMap<Integer, ClothesNumBean>();
session.setAttribute("cart", cart);
}
我现在要删除里面的数据该如何写,请各位大虾帮帮忙!!
------解决方案--------------------
session.setAttribute("cart", null);
------解决方案--------------------session.sremoveAttribute("cart");
------解决方案--------------------session.removeAttribute("cart");