Grails 每个标签都带有迭代

发布于 2024-11-09 03:45:02 字数 58 浏览 0 评论 0原文

嘿。我如何在每个标签中都有一个变量作为迭代器(例如,第一次运行周期的值=1,第二次的值=2,依此类推。

Hey. How can i have a variable in each tag to be an iterator (for example, first time run cycle takes value=1, second time value=2, and so on..

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

情深已缘浅 2024-11-16 03:45:02

状态属性就是您正在寻找的属性。参见下文:

<g:each collection=${books} var="abook" status="i">
    ${i}
</g:each>

如果您在每个标签内调用 ${i} ,它将返回当前的迭代计数。

假设 books 集合包含 5 本书,输出将是:

0
1
2
3
4

The status attribute is what you are looking for. See below:

<g:each collection=${books} var="abook" status="i">
    ${i}
</g:each>

if you call ${i} inside the each tag it will return the current iteration count.

Assuming the books collection contains 5 books, the output will be:

0
1
2
3
4
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文