内容列表

  • 2022-05-01 0 689
    Thymeleaf教程(5) - Thymeleaf标准表达式语法(下)

    URL链接 URL链接有以下几种类型:    绝对地址,如http://www.thymeleaf.org 相对地址 相对页面地址.如:/user/login.html 服务器相对地址如:~/billing/processInvoice(部署在同服务器,不同域名的地址) 让我们来使用th:href属性: <!-- Will produce 'http://localhost:8080/gtvg/o...

  • 2022-05-01 0 636
    Thymeleaf教程(4) - Thymeleaf标准表达式语法(上)

    我们已经知道了两种语法 <p th:utext="#{home.welcome}">Welcome to our grocery store!</p> <p>Today is: <span th:text="${today}">13 february 2011</span></p> 但是还有很多语法我们不知道,接下来我们快速的介绍更多的表达式语法: 简单表示式: 变量表达式: ${…} 选择变量表...