Thymeleaf学习

  • th:fragment即代码片段,用于另外的引用

  The awesome application

  
  
  
  

  
  

具体的使用方法如下:
_header.html:


_index.html:


th:include比较这个是插入标签内部的内容

  • 这个用于当name没有值时,就输出no user authenticated
span th:text="${user.name} ?: _">no user authenticated
  • 在spring boot 中Thymeleaf一定要依赖下面这个包,不要依赖官网上的包(如果依赖你需要去配置),不然会得到404错误,因为映射不了
     
  org.springframework.boot
  spring-boot-starter-thymeleaf
  
  • themeleaf类似java中如下循环:
int pageSize = 10;
for(int i = 0; i < pageSize; i++){
}

实现如下

th:each="i : ${#numbers.sequence(0,pageSize)}"
  • js取thymeleaf模板的值
Thymeleaf学习_第1张图片
Paste_Image.png

你可能感兴趣的:(Thymeleaf学习)