5

我需要检索我拥有的列表中每个值的索引位置。我这样做是为了显示一个具有交替行背景颜色的 gsp 表。例如:

(list.indexVal % 2) == 1 ? 'odd' : 'even'

如何获取 Groovy 列表中每个项目的索引位置编号?谢谢!

4

2 回答 2

10

根据文档,gsp 视图中的 g:each 标记允许 grails 存储迭代索引的“status”变量。示例:

<tbody>
  <g:each status="i" in="${itemList}" var="item">
    <!-- Alternate CSS classes for the rows. -->
    <tr class="${ (i % 2) == 0 ? 'a' : 'b'}">
      <td>${item.id?.encodeAsHTML()}</td>
      <td>${item.parentId?.encodeAsHTML()}</td>
      <td>${item.type?.encodeAsHTML()}</td>
      <td>${item.status?.encodeAsHTML()}</td>
    </tr>
  </g:each>
</tbody>
于 2013-02-07T19:56:56.263 回答
2

可以使用 、 或 循环中g:eacheachWithIndex任何一个。for

但是,对于这种特定情况,不需要索引值。推荐使用 css 伪类:

tr:nth-child(odd)  { background: #f7f7f7; }
tr:nth-child(even) { background: #ffffff; }

如果您仍然需要获取索引,选项是:

<g:each status="i" in="${items}" var="item">
    ...
</g:each>

<% items.eachWithIndex { item, i -> %>
    ...
<% } %>

<% for (int i = 0; i < items.size(); i++) { %>
   <% def item = items[i] %>
   ...
<% } %>
于 2014-05-31T07:23:28.953 回答