gpt4 book ai didi

jsp - 如何使用 JSTL forEach 循环迭代 HashMap?

转载 作者:行者123 更新时间:2023-12-04 01:17:10 25 4
gpt4 key购买 nike

这个问题在这里已经有了答案:





How to loop through a HashMap in JSP?

(3 个回答)


5年前关闭。




在我的 Spring MVC 应用程序中,我从我的 controllerServlet 返回了 HashMap。现在我需要使用 JSTL 在我的 jsp 中打印它。请帮忙解决这个问题。我对这一切都很陌生。

最佳答案

尝试这个,

假设我的 MAP 是:-

Map<String, String> countryList = new HashMap<String, String>();
countryList.put("United States", "Washington DC");
countryList.put("India", "Delhi");
countryList.put("Germany", "Berlin");
countryList.put("France", "Paris");
countryList.put("Italy", "Rome");

request.setAttribute("capitalList", countryList);

所以在 JSP 中,
<c:forEach var="country" items="${capitalList}">
Country: ${country.key} - Capital: ${country.value}
</c:forEach>

希望这可以帮助 !

关于jsp - 如何使用 JSTL forEach 循环迭代 HashMap?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/9257240/

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