当前位置:首页 > 技术交流 > 学习笔记 > 正文内容

thymeleaf笔记

薇薇4年前 (2020-12-14)学习笔记1812

基础语法

文本标签 th:text/th:utext

· 字符串拼接

· *{...}${...}表达式

· #{...}表达式

· ~{...}片段表达式

· @{...}链接网址表达式

· 条件判断 th:if/th:unless

· switch

· for循环

· th:href

· th:class

· th:attr

· th:value

· th:action

· th:id

· th:inline

· th:onclick

· th:selected

· th:src

· th:style

· th:with

· Elvis运算符

· 三元表达式

· No-Operation_)什么都不做

· 内联

· 如何使用内连操作

· 禁用内联操作

· JavaScript内联

· CSS内联

· 模板布局

· 定义引用片段代码

· 通过id属性来声明片段

· th:insertth:replace(和th:include)之间的区别

· 带参数的引用片段

· 删除模版片段

· 预定义的工具对象

· #dates

· #numbers

· #strings

· #bools

· #arrays

· #lists

· #sets

· #maps

· #aggregates

 

 

 

引入语法<html xmlns:th="http://www.thymeleaf.org">

<!-- thymeleaf 相关依赖 -->

Springboot配置pom.xml  

<dependency>

  <groupId>org.springframework.boot</groupId>     <artifactId>spring-boot-starter-thymeleaf</artifactId>

</dependency>

 

application.peoperties添加thymeleaf配置

server.port=8090

server.servlet.context-path=/sbe

 

#关闭 Thymeleaf 的缓存开发过程中无需重启

spring.thymeleaf.cache = false

#设置thymeleaf页面的编码

spring.thymeleaf.encoding=UTF-8

spring.thymeleaf.mode=HTML5

#设置thymeleaf页面的后缀

spring.thymeleaf.suffix=.html

#设置thymeleaf页面的存储路径

spring.thymeleaf.prefix=classpath:/templates/

 

 

 

#控制器中的Model引包引得是 :import org.springframework.ui.Model;

 

 

 

th:onclick=|da(xxx,${xxx})| 动态给方法赋参数

 

 

 

 

 

 

 

 

 

 

 

 

 


版权声明:本文由纵横四海博客发布,如需转载请注明出处。

部分资源整理自互联网,如侵权请联系站长删除!

本文链接:https://www.fxkgg.com/post/14.html

分享给朋友:

相关文章

Java微服务搭建学习笔记

Java微服务搭建学习笔记

1. 配置pom.xml,继承springboot父项目,与springcloud版本匹配2. 搭建服务配置中心,添加springboot配置文件(启动类添加注解@EnableCo...

Ajax和Axios的区别?

一、  ajax和axios的区别?axios是通过promise实现对ajax技术的一种封装,就像jQuery实现ajax封装一样。简单来说: ajax技术实现了网页的局部数据刷...

springCloud笔记

Spring Cloud OpenFeign解释1. 两个重要的标注 @FeignClient :标注用于声明Feign客户端可访问的web服务   参数:1.nam 2.qualifier 3.ur...

redis是什么?

redis是什么?

哈喽~ 又见面了 ...好久没来瞅瞅我的博客了 最近忙得很呀 今天抽空更一下博客,正好最近学了一些小知识,来跟大家分享一下~~~1. 什么是redis?   它本质上是一种键值数据库,它既保持了这种快...

发表评论

访客

◎欢迎参与讨论,请在这里发表您的看法和观点。