Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
所以,我有一个列表,我通过模型将它从我的 Spring 控制器传递到 JSP。如何遍历 JSP 中的列表?
假设该列表有几个我想在 JSP 中显示的超链接。如何在没有脚本的情况下做到这一点?
您可以使用 jstl 标记并显示列表
<c:forEach var="listVar" items="${listName}"> //add the model attribute of list in items <option value ="10"><c:out value="${listVar.attribute}"/></option> </c:forEach>