小编典典

Java中的ShoppingCart

jsp

我有一个Product类,并CartItem保存产品类,以及shoppingCart包含了从购物车中添加/删除项目的方法类。

我目前正在使用XML文件存储产品。您如何在JSP页面中显示产品列表。您如何遍历产品列表,列出每个产品的名称,描述,尺寸及其价格?


阅读 329

收藏
2020-06-10

共1个答案

小编典典

您如何在JSP页面中显示产品列表。 您如何遍历产品列表,列出每个产品的名称,描述,尺寸及其价格

使用JSTL <c:forEach>遍历集合。使用EL
${}访问和显示bean属性。使用HTML <table>将其标记为表格。

<%@taglib prefix="c" uri="http://java.sun.com/jsp/jstl/core" %>
...
<table>
    <c:forEach items="${products}" var="product">
        <tr>
            <td>${product.name}</td>
            <td>${product.description}</td>
            <td>${product.size}</td>
            <td>${product.price}</td>
        </tr>
    </c:forEach>
</table>
2020-06-10