freemarker template for loop statement

青春壹個敷衍的年華 提交于 2019-12-06 18:51:49

问题


I want to create for statement in freemarker template. I am reading howto http://freemarker.sourceforge.net/ but there is just list. How can i create for statement or foreach.

parameter.put("size", size);

I want to create in freemarker template for statement like

for (int number = 1; number <= size; number++) {

回答1:


From the Freemarker manual you can do:

<#assign x=3>
<#list 1..x as i>
  ${i}
</#list>

Edit: Beware, if x is 0 (or less), it will count backwards. So you mostly want 1 ..< x, which excludes x (this requires FreeMarker 2.3.22).




回答2:


You can use list directive:

<ul>
<#list 1..2 as index>
    <li>${index}</li>
</#list>
</ul>


来源:https://stackoverflow.com/questions/15461721/freemarker-template-for-loop-statement

标签
易学教程内所有资源均来自网络或用户发布的内容,如有违反法律规定的内容欢迎反馈
该文章没有解决你所遇到的问题?点击提问,说说你的问题,让更多的人一起探讨吧!