gpt4 book ai didi

java - Spring mvc Controller 返回Collection(set, list),jsp将其用作数组

转载 作者:太空宇宙 更新时间:2023-11-04 08:33:09 25 4
gpt4 key购买 nike

在 Controller 中:

return model.addAttribute("test", new Set<test>());

在JSP中,可以使用jSTL

<c:forEach items="${test}" var=value>

从 Set 中获取值。

有没有办法在JSP中将Set转换为数组?我们不使用 jSTL ,而是使用 test[0], test[1] ... 来访问 Set 值。

最佳答案

  • set.toArray()将其转换为数组
  • 您可以使用jSTL <c:forEach>使用数组或集合
  • 根据定义,集合没有索引,因此您无法通过索引获取元素,只能迭代它

关于java - Spring mvc Controller 返回Collection(set, list),jsp将其用作数组,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/7037063/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com