在 grails 中使用 g:each 遍历 2 个项目

loop through 2 items using g:each in grails

我可以在 grails 的 g:each 标签中循环超过 1 个项目吗?我想同时循环遍历 2 个相同长度的项目,然后显示响应。

如有任何帮助,我们将不胜感激。

是的,可以。
您可以使用 status 来知道它是哪个循环以及要抓取哪个元素。

<g:each in="${firstList}" status="i" var="elem">                
   <td>${secondList[i].attribute}</td> //you can access 2nd list elements like this
   <td>${elem.attribute}</td> //you can access first list elements like this
</g:each>