thymeleaf 弹性模板


thymeleaf 弹性模板

 

应用:设置公共文件头,并可根据需要导入当前页面、<link>等</span></strong></p> <p> </p> <p> </p> <h3><span style="color:#3399ea;">*******************</span></h3> <p><strong><span style="color:#86ca5e;">示例</span></strong></p> <p> </p> <p><strong><span style="color:#e579b6;">base.html:</span><span style="color:#ffbb66;">设置公共文件头</span></strong></p> <pre><code class="language-html"><head th:fragment="common_header(title,links)"> <title th:replace="${title}">The awesome application

 

*****************

引入操作 1

 



  Awesome - Main

  
  

 

引入结果



  Awesome - Main

  
  
  
  

  
  

title替换为当前页面设置的title,保留了当前页面的link

 

 

*****************

引入操作 2: ~{}

 



  Awesome - Main

~{}:表示不执行任何引入操作

 

引入结果



  Awesome - Main

  
  
  
  

title为当前页面的title、th:blcok不执行任何操作

 

 

*****************

引入操作 3:_

 



  Awesome - Main

  
  

_:不执行任何操作,与~{}等效

 

引入结果



  The awesome application

  
  
  
  

  
  

title为公共页面的title,保留了当前页面的link

 

 

你可能感兴趣的:(thymeleaf)