如何将从控制器操作返回的列表中的每个值打印到 gsp 表的每一行?
我正在从控制器操作返回日期列表、大小列表和月份列表到 gsp。我希望日期、大小和月份列表中的每个值显示在每行的 3 个不同字段中。如何实现?
提前感谢
laxmi.P
I am returning a list of dates,list of size and list of months from controller action to gsp..i want each value in dates,size and months list to be displayed in 3 different fields of each row.how to achieve it?
Advance thanks
laxmi.P
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
假设
dlist
是您从控制器/操作传递的日期列表,然后在 gsp:或
Enjoy
UPDATE:
为了实现这一目标,我认为最好将地图列表传递到 gsp 页面,例如
在 gsp 页面中:
HTML 视图:
Suppose
dlist
is the list of dates you are passing from the controller/action, then in gsp:or
Enjoy
UPDATE:
To achieve this thing, I think it would be better to pass list of maps to gsp page, e.g
in gsp page:
HTML view:
使用标签。您的<表>标签应位于之外和内的标签
use <g:each> tag. Your <table> tag should be outside <g:each> and <tr> tags inside <g:each>