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.
我有一组对象。我想从集合中迭代这些对象以使用 JSTL 在 jsp 上显示它。它正在使用 List,但我需要使用 Set。
是否可以使用 jstl 迭代一个集合?
<c:forEach items="${pitches}" var="pitch" />
在上面:pitch有一组对象说Set<employee>......
Set<employee>
我怎样才能在球场内迭代这个员工集???
是<c:forEach>的适用于所有 Iterable 所以 Set 应该是好的
<c:forEach>
JSTL 标签<c:forEach>适用于任何Collection实现
Collection
来自文档:
基本的迭代标签,接受许多不同的集合类型并支持子集和其他功能