如何在Rhythm中编写WHILE循环

时间:2012-07-16 17:22:34

标签: java template-engine templating rythm

我尝试在HTML标签中在Rythm中编写While循环,但我不能

类似这样的代码:

@{
int i = 0;
while( i< 5){
i++;
}

<h2>hello</h2>

@{
}
}

1 个答案:

答案 0 :(得分:3)

目前 Rythm 不支持while循环。请改用for循环来代替您的情况:

@for(int i = 0; i < 5; ++i) {
    <h2>hello</h2>
}