记录关于thymeleaf th:replace th:include th:insert 的区别

区别介绍:

    th:insert   : 保留自己的主标签,保留th:fragment的主标签。
    th:replace :不要自己的主标签,保留th:fragment的主标签。
    th:include :保留自己的主标签,不要th:fragment的主标签。(官方3.0后不推荐)

 

举个栗子:

说明三种语法的区别:

    
    

 

第一种:th:insert 

    
    

效果是:( 保留自己的主标签,保留th:fragment的主标签。


Copyright © 2020 emframework.com all rights reserved.

第二种:th:replace

    
    

效果是:不要自己的主标签,保留th:fragment的主标签。

    
    
Copyright © 2020 emframework.com all rights reserved.
第三种:th:include
    
    

效果是:保留自己的主标签,不要th:fragment的主标签。(官方3.0后不推荐)
 


Copyright © 2020 emframework.com all rights reserved.

 

你可能感兴趣的:(记录关于thymeleaf th:replace th:include th:insert 的区别)