温馨提示×

温馨提示×

您好,登录后才能下订单哦!

密码登录×
登录注册×
其他方式登录
点击 登录注册 即表示同意《亿速云用户服务条款》

springboot使用thymeleaf怎么引用公共部分html

发布时间:2021-07-05 18:42:45 来源:亿速云 阅读:362 作者:chen 栏目:大数据

这篇文章主要介绍“springboot使用thymeleaf怎么引用公共部分html”,在日常操作中,相信很多人在springboot使用thymeleaf怎么引用公共部分html问题上存在疑惑,小编查阅了各式资料,整理出简单好用的操作方法,希望对大家解答”springboot使用thymeleaf怎么引用公共部分html”的疑惑有所帮助!接下来,请跟着小编一起来学习吧!

//下面的例子只供参考,并没有写完整的例子,给出了关键部分

//使用 th:fragment="topbar" 来把工公共部分抽取处理

<nav class="navbar navbar-dark sticky-top bg-dark flex-md-nowrap p-0" th:fragment="topbar"> </li> </ul> </nav>

//在别的页面引入公共片段common/bar代表common目录下的bar.html(抽取的公共页面)topbar代表从bar.html抽取的片段

<div th:replace="common/bar::topbar"></div>

//引入片段有三种方式 建议使用第2种方式

<div th:insert="footer :: copy"></div>

<div th:replace="footer :: copy"></div>

<div th:include="footer :: copy"></div>

//下面代表上面的三种方式,对比就能看出区别

<div>

<footer>

© 2011 The Good Thymes Virtual Grocery

</footer>

</div>

<footer>

© 2011 The Good Thymes Virtual Grocery

</footer>

<div>

© 2011 The Good Thymes Virtual Grocery

</div>

//下面是讲的是frament表达式的使用,为了让某个在css在某个页面才能起作用

// 使用 th:class="${activeUri=='main.html'?'nav-link active':'nav-link'}"改变在不同的请求下,class有不同的css

//下面例子表示在{你的项目的相关路径}/main.html的请求下,a标签下的class="nav-link active",如果不是class="nav-link"

<a class="nav-link active"

 th:class="${activeUri=='main.html'?'nav-link active':'nav-link'}"
 
 href="http://getbootstrap.com/docs/4.0/examples/dashboard/#">

<div class="row">

<div th:replace="common/bar::#leftbar(activeUri='main.html')"></div>

到此,关于“springboot使用thymeleaf怎么引用公共部分html”的学习就结束了,希望能够解决大家的疑惑。理论与实践的搭配能更好的帮助大家学习,快去试试吧!若想继续学习更多相关知识,请继续关注亿速云网站,小编会继续努力为大家带来更多实用的文章!

向AI问一下细节

免责声明:本站发布的内容(图片、视频和文字)以原创、转载和分享为主,文章观点不代表本网站立场,如果涉及侵权请联系站长邮箱:is@yisu.com进行举报,并提供相关证据,一经查实,将立刻删除涉嫌侵权内容。

AI