<%@ taglib prefix="c" uri="http://java.sun.com/jsp/jstl/core" %> <%@ page contentType="text/html;charset=UTF-8" language="java" %> 购物车 <%--静态包含:base标签,css样式,js脚本--%> <%@ include file="/pages/common/head.jsp"%>
<%--如果购物车为空,则提示用户浏览商品--%> <%--如果当前购物车不为空,则显示商品信息--%>
商品名称 数量 单价 金额 操作
当前购物车为空,请前往浏览商品
${entry.value.name} ${entry.value.price} ${entry.value.totalPrice} 删除
<%--如果购物车非空才输出页面的内容--%>
购物车中共有${sessionScope.cart.totalCount}件商品 总金额${sessionScope.cart.totalPrice} 清空购物车 去结账
<%--静态包含:页脚--%> <%@include file="/pages/common/footer.jsp"%>