我想要的是顯示每個產品的「添加到購物車」按鈕的產品列表。我如何將該按鈕與產品相關聯?Java中的servlets
即如果我點擊將項目A添加到購物車,我將如何在按鈕中指定要從中添加項目的位置調用ShoppingCart類。
我已經有了一個servlet,用於將所有產品填入ArrayList,並將其轉發到JSP頁面。
<form action="products" method="get">
<table border=1>
<c:forEach items="${products}" var="product">
<tr>
<td>${product.id}</td>
<td>${product.description}</td>
<td>${product.unitPrice}</td>
<td><input type="button" value="Add to cart" onlick="????"/></td>
</tr>
</c:forEach>
</table>
</form>
理想情況下,你會使用一個POST而不是爲這一個GET,但這是熱尖。 – 2011-03-29 17:45:05
@威爾:公平點,更新答案。 – BalusC 2011-03-29 17:49:52