如何使用 JSTL forEach 循环迭代 HashMap?
在我的 Spring MVC 应用程序中,我从controllerServlet 返回了HashMap。现在我需要使用 JSTL 在我的 jsp 中打印它。请帮忙解决这个问题。我对这一切都是新手。
In my Spring MVC application i have HashMap returned from my controllerServlet. Now I need to print that in my jsp using JSTL. Please help on this. I'm new in all this.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
试试这个,
假设我的 MAP 是:-
所以在 JSP 中,
希望这有帮助!
Try this,
suppose my MAP is :-
So in JSP ,
Hope this helps !
要从哈希映射访问动态值,您可以使用大括号符号
[]
。例如,考虑 @Som's 答案映射
JSP
设置密钥
传递动态密钥
或者直接
参见
For accessing dynamic value from hash map you can use brace notation
[]
.For example, consider @Som's answer map
JSP
Set key
pass the dynamic key
Or directly
See also