Ajax修改購物車樣本_AJAX相關

來源:互聯網
上載者:User

1.購物車類的設計

ShoppingCartItem:書的封裝,包括書名,數量,價格三個屬性,以及對應的getter和setter方法。

ShoppingCart:購物車封裝類,items為 Map<String, ShoppingCartItem> ,以及加入購物車,得到購物車中書的總數量以及總價格三個函數。

2:jsp加入購物車,超連結中帶入書名以及價格

<body> <!-- 加入span的目的是為了定位 --> <div id="cartstatus"> 您已經將 <span id="bookName"></span>加入到購物車中,購物車中有 <span id="totalBookNumber"></span>本書,總價格是 <span id="totalMoney"></span> </div> <br> <br> java <a href="${pageContext.request.contextPath}/addToCart?id=java&price=100">加入購物車</a> <br> ajax <a href="${pageContext.request.contextPath}/addToCart?id=ajax&price=200">加入購物車</a> <br> jquery <a href="${pageContext.request.contextPath}/addToCart?id=jquery&price=300">加入購物車</a> <br> </body><!--${pageContext.request.contextPath}擷取該項目的絕對路徑 -->

3:addToCart -----servlet的設計

步驟如下:

1) :擷取請求參數 id(bookName),price,是從jsp頁面中的超連結來擷取的

2):在session中擷取購物車對象,如果session屬性中沒有購物車,則建立一個購物車對象放置在session屬性中

3) : 加入購物車操作Shopping.addToCart(bookName, price);

4):想ajax傳遞Json對象,該對象包括 :{""bookName"":"totalBookNumber","totalMoney" },若從伺服器端返回json對象,則屬性名稱必須使用雙引號!!

5):響應json請求,response.getWriter().print(json);

public class AddToCartServlet extends HttpServlet { public void doGet(HttpServletRequest request, HttpServletResponse response) throws ServletException, IOException { this.doPost(request, response); } public void doPost(HttpServletRequest request, HttpServletResponse response) throws ServletException, IOException { //1:擷取請求參數 id(bookName),price String bookName =request.getParameter("id"); int price =Integer.parseInt(request.getParameter("price")); //2:擷取購物車對象,在session中 ShoppingCart sc=(ShoppingCart) request.getSession().getAttribute("sc"); if(sc==null){ sc=new ShoppingCart(); request.getSession().setAttribute("sc",sc); } //3;將點擊的對象加入到購物車中 sc.addToCart(bookName, price); //4:準備響應的Json對象:{""bookName"":"totalBookNumber","totalMoney" } //若從伺服器端返回json對象,則屬性名稱必須使用雙引號!! StringBuilder sBuilder=new StringBuilder(); sBuilder.append("{") .append("\"bookName\":\""+bookName+"\"") .append(",") .append("\"totalBookNumber\":\""+sc.getTotalBookNumber()+"\"") .append(",") .append("\"totalMoney\":\""+sc.getTotalMoney()+"\"") .append("}"); //響應json請求 response.setContentType("text/javascript"); response.getWriter().print(sBuilder.toString()); } }上述中的用StringBuilder來拼接JSON字串的方式可以藉助第三方開源Jackson來簡化實現:String jsonStr=null; ObjectMapper objectMapper=new ObjectMapper(); jsonStr=objectMapper.writeValueAsString(sc);

4:ajax接受從伺服器傳來的參數{""bookName"":"totalBookNumber","totalMoney" }

步驟:

1):為加入購物車這個超連結增加單擊響應函數,並取消預設行為(return false)

2):通過 HTTP GET 請求載入 JSON 資料。$.getJSON(url, [data], [callback])

準備url.agrs,並在回呼函數內部將購物車中的內容顯示在Jsp頁面中。

3):通過jquery中的hide(),show()方法,判斷是不是第一使用購物車,如果是第一次使用,則jsp頁面不顯示購物車。

<head> <!--${pageContext.request.contextPath}擷取該項目的絕對路徑 --> <script type="text/javascript" src="${pageContext.request.contextPath}/scripts/jquery-1.7.2.js"></script> <script type="text/javascript"> $(function(){ var isHasCart="${sessionScope.sc==null}"; if(isHasCart=="true"){ $("#cartstatus").hide();//隱藏顯示的元素 }else{ $("#cartstatus").show(); //顯示隱藏的匹配元素 $("#bookName").text("${sessionScope.sc.bookName}"); $("#totalBookNumber").text("${sessionScope.sc.totalBookNumber}"); $("#totalMoney").text("${sessionScope.sc.totalMoney}"); } $("a").click(function(){ $("#cartstatus").show(); var url=this.href; //url屬性 var agrs={"time":new Date()}; //時間戳記 $.getJSON(url,agrs,function(data){ $("#bookName").text(data.bookName); $("#totalBookNumber").text(data.totalBookNumber); $("#totalMoney").text(data.totalMoney); }); return false; }); }); </script> </head>
相關文章

聯繫我們

該頁面正文內容均來源於網絡整理,並不代表阿里雲官方的觀點,該頁面所提到的產品和服務也與阿里云無關,如果該頁面內容對您造成了困擾,歡迎寫郵件給我們,收到郵件我們將在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.