thymeleaf的一些使用语法总结

首先得在页面引入thymeleaf,在html标签中加入:

  • 普通的获取值:
 `
  • href中跳转controller地址:
th:href="@{${'/xxx/xxx'}(pageNum=${page.getPrePage()},pageSize=${page.getPageSize()})}"
  • 标签里面调用js的function并传参数:

    编辑 

  • 判断boolean类型的值:
上一页
上一页
  • 遍历数据:

    
    
    
    
    
    
    

  • 格式化时间:

  • 引用js/css:


  • include公共页面:

这其中common是提取的公共页面,commonFooter指的是给公共部分命的名:
thymeleaf的一些使用语法总结_第1张图片

你可能感兴趣的:(thymeleaf)