我正在尝试在 playframework 视图中进行迭代,但目前没有成功。我有以下结构:
@if(list != null) {
for(a <- 0 to list.size()/5)
{
// some html, where I want to get the value of a
for(b <- a*5 to a*5+5) // here I want to use the a value again
{
some html
}
}
所以我的问题是如何获取循环的当前索引,以便我能够使用它。