JSP實現最簡單的購物小車

來源:互聯網
上載者:User

book.jsp是商品列表頁面,我們這裡是圖書。cart.jsp是購物小車頁面。

最簡單的購物車商品數量只能是1,只能添加,不能刪除。

//book.jsp,圖書列表

 

<?xml version="1.0" encoding="UTF-8" ?>
<%@ page language="java" contentType="text/html; charset=UTF-8"
    pageEncoding="UTF-8"%>
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml">
<head>
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8" />
<title>Insert title here</title>
</head>
<body>
<%
   String[] books={"JSP","Java","Economics","Capital",
  "MIS","ERP","CRM","DataMing"};
  
%>
<table width="80%" border="1">
<tr>
  <td>Books</td>
  <td>Operations</td>
</tr>
<%
   for(int i=0;i<books.length;i++){
    %>
        <tr>
           <td><%=books[i] %></td>
           <td><a href="cart.jsp?book=<%=books[i]%>">add to cart</a></td>
       </tr>
    <%
   }
%>
</table>
<a href="cart.jsp">show cart</a>
</body>
</html>

 

 

//cart.jsp,購物小車

 

<?xml version="1.0" encoding="UTF-8" ?>
<%@ page language="java" contentType="text/html; charset=UTF-8"
    pageEncoding="UTF-8" import="java.util.*"%>
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml">
<head>
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8" />
<title>Insert title here</title>
</head>
<body>
<%
  String bookName = request.getParameter("book");
  ArrayList cart = (ArrayList)session.getAttribute("cart");
  if(cart==null){
   //first time /
   cart = new ArrayList();
   session.setAttribute("cart",cart);
  }
  boolean found = false;
  if(bookName!=null&&!bookName.trim().equals("")){ 
   for(int i=0;i<cart.size();i++){
    String current = (String)cart.get(i);
    if(bookName.equals(current)){
     found=true;
     break;
    }
   }
   if(!found){
    cart.add(bookName);
   }
  }
%>
<h1>Cart</h1>
<table width="700" border="1">
<tr>
<td>Books</td>
<td>Count</td>
</tr>
<%
  for(int i=0;i<cart.size();i++){
   String current = (String)cart.get(i);
   out.println("<tr><td>"+current+"</td><td>1</td></tr>");
  }
%>

</table>
<a href="book.jsp">continue</a>
</body>
</html>

相關文章

聯繫我們

該頁面正文內容均來源於網絡整理,並不代表阿里雲官方的觀點,該頁面所提到的產品和服務也與阿里云無關,如果該頁面內容對您造成了困擾,歡迎寫郵件給我們,收到郵件我們將在5個工作日內處理。

如果您發現本社區中有涉嫌抄襲的內容,歡迎發送郵件至: info-contact@alibabacloud.com 進行舉報並提供相關證據,工作人員會在 5 個工作天內聯絡您,一經查實,本站將立刻刪除涉嫌侵權內容。

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.