标签: java template-engine templating rythm
我尝试在HTML标签中在Rythm中编写While循环,但我不能
类似这样的代码:
@{ int i = 0; while( i< 5){ i++; } <h2>hello</h2> @{ } }
答案 0 :(得分:3)
目前 Rythm 不支持while循环。请改用for循环来代替您的情况:
while
for
@for(int i = 0; i < 5; ++i) { <h2>hello</h2> }