Thymeleaf 循环固定次数/循环次数由变量控制

教程分享 > Java教程 > Thymeleaf (104) 2024-08-06 15:09:51

环境

  • Thymeleaf 3.0

循环5次

需求:

输出5个li

编码参考:

<ul>
    <li th:each="index:${#numbers.sequence(1, 5)}" >
        [(${index})]. some thing
    </li>
</ul>

执行结果:

<ul>
    <li>
        1. some thing
    </li>
    <li>
        2. some thing
    </li>
    <li>
        3. some thing
    </li>
    <li>
        4. some thing
    </li>
    <li>
        5. some thing
    </li>
</ul>

 

循环次数由变量控制

根据数组长度循环输出li

<ul th:with="liSize=5">
    <li th:each="index : ${#numbers.sequence(1, liSize)}" >
        [(${index})]. some thing
    </li>
</ul>

执行结果:

<ul>
    <li>
        1. some thing
    </li>
    <li>
        2. some thing
    </li>
    <li>
        3. some thing
    </li>
    <li>
        4. some thing
    </li>
    <li>
        5. some thing
    </li>
</ul>

 

https://www.leftso.com/article/2408061448498694.html

相关文章
环境Thymeleaf 3.0循环5次需求:输出5个li编码参考:&lt;ul&gtl; &lt;li th:each="index:${#numbers.sequence(1,
Thymeleaf 递归,Thymeleaf模板引擎递归展示如评论留言等场合适用
SSH/SSM项目中如何集成thymeleaf?本文将讲解SSH/SSM项目中如何集成thymeleaf模板引擎
使用thymeleaf 模板创建时间 使用thymeleaf 创建指定日期为:2023-10-18 #dates.create(2023,10,18) 使用thymeleaf ...
thymeleaf 设置不校验html标签
本文说一下在thymeleaf模板引擎中,如何给 textarea 赋值
thymeleaf模板 报错信息:​​​​​​​org.thymeleaf.exceptions.TemplateInputException: Error resolving template...
设置数据源将数据写入到 Model 中 @RequestMapping("/menulist") public String MenuManagerList(M
springboot 使用thymeleaf 模板引擎中url中的&引起的org.xml.sax.SAXParseException: 对实体 "uid" 的引用必须以 ';' 分隔符结尾。问题解决
配置在resources目录下面创建i18n目录,然后创建几个文件messages.properties 默认显示语言内容messages_en_US.prop