1
我想添加多個項目以添加到購物車使用session.i編寫代碼只添加一個項目到購物車。可以üPLZ建議如何我可以添加多個items.plz ??使用會話通過servlet將多個項目添加到購物車
String name=req.getParameter("n");
String cost=req.getParameter("c");
HttpSession s=req.getSession();
s.setAttribute("name",name);
s.setAttribute("cost",cost);
out.println("item successfully added to cart");
out.println("\n<a href=\'viewserv\'>view cart</a>");
老人們可能會更好 – user3717775
怎麼樣的getAttribute?如果我想顯示結果 – user3717775
@ user3717775,'getAttribute'用於從會話中獲取以前添加的列表以添加新值以列出或顯示結果。 – Masudul