热门标签 | HotTags
当前位置:  开发笔记 > 编程语言 > 正文

(八)Thymeleaf的th:*属性之——模板布局th:with属性优先级

3.7模板布局模板名称:layout.html3.7.1th:fragmente.g.模板名为footer.html页面body部分如下:

3.7 模板布局

模板名称:layout.html

3.7.1 th:fragment

e.g.模板名为footer.html页面body部分如下:

<body><div th:fragment&#61;"copy">© 2011 The Good Thymes Virtual Grocerydiv>
body>

fragment片段定义语法&#xff1a;
如th:fragment&#61;”copy”这样就定义了一个名为copy的fragment

3.7.2 th:include  and th:replace

<1>引入fragment的形式&#xff1a;    简单地&#xff0c;templatename::fragmentname(不惟一)

<div th:insert&#61;"~{footer :: copy}">div>

equals.

<div th:insert&#61;"footer :: copy">div>

<2>二者的区别 th:include:将fragment的内容包含进来&#xff1b; th:replace:用fragment替换掉所在标签

3.7.3 th:remove  

一般用于将模拟数据在真实环境中移除&#xff1a;  
th:remove可以以五种不同的方式行事&#xff0c;具体取决于它的价值
  • all&#xff1a;删除包含标签及其所有子项。
  • body&#xff1a;不要删除包含的标签&#xff0c;但删除其所有的孩子。
  • tag&#xff1a;删除包含的标签&#xff0c;但不要删除其子项。
  • all-but-first&#xff1a;除去第一个包含标签的所有子项。
  • none&#xff1a; 没做什么。该值对于动态评估是有用的。
e.g.

<tr th:remove&#61;"all"><td>Mild Cinnamontd><td>1.99td><td>yestd>
tr><a href&#61;"/something" th:remove&#61;"${condition}? tag : none">Link text not to be removeda>

3.8 th:with

模板名称:with.html 定义局部变量

1.可一次定义多个,逗号分隔

e.g.

<div th:with&#61;"firstPer&#61;${list[0]}"> <p>The name of the first person is <span th:text&#61;"${firstPer.userName}">Julius Caesarspan>.p>
div>

<div th:with&#61;"firstPer&#61;${list[0]},secondPer&#61;${list[1]}"> <p>The name of the first person is <span th:text&#61;"${firstPer.userName}">Julius Caesarspan>.p> <p> But the name of the second person is <span th:text&#61;"${secondPer.userName}">Marcus Antoniusspan>. p>
div>

2.可复用

e.g.

<div th:with&#61;"company&#61;${user.company},account&#61;${accounts[company]}"> <div th:text&#61;"${company}">div> <div th:text&#61;"${account}">div>
div>

3.9 属性优先级

 


转:https://www.cnblogs.com/zjfjava/p/6893739.html



推荐阅读
author-avatar
涂凌萱_TLX_9s7_140
这个家伙很懒,什么也没留下!
PHP1.CN | 中国最专业的PHP中文社区 | DevBox开发工具箱 | json解析格式化 |PHP资讯 | PHP教程 | 数据库技术 | 服务器技术 | 前端开发技术 | PHP框架 | 开发工具 | 在线工具
Copyright © 1998 - 2020 PHP1.CN. All Rights Reserved | 京公网安备 11010802041100号 | 京ICP备19059560号-4 | PHP1.CN 第一PHP社区 版权所有