上篇写了怎么导入thymeleaf,和为什么要用模板引擎。本篇简单的总结了,thymeleaf的基本用法。

1)、th:text;改变当前元素里面的文本内容(${})

​    th:任意html属性;来替换原生属性的值(例如,元素的id,class的值等),

springBoot模板引擎thymeleaf的基本用法

具体用法如上图,
    Selection Variable Expressions: *{...}:选择表达式:和${}在功能上是一样;
        补充:配合 th:object="${session.user}:
   <div th:object="${session.user}">

下面的*就是代表上面的object
    <p>Name: <span th:text="*{firstName}">Sebastian</span>.</p>
    <p>Surname: <span th:text="*{lastName}">Pepper</span>.</p>
    <p>Nationality: <span th:text="*{nationality}">Saturn</span>.</p>
    </div>

Message Expressions: #{...}:获取国际化内容
    Link URL Expressions: @{...}:定义URL;

省去了localhost:8080/项目名的一大串默认用/就能代替。后边的变量用()括起来,多个用,分割。变量值可用${}表示。以前是用?拼接,现在很简单了。
            @{/order/process(execId=${execId},execType='FAST')}
    Fragment Expressions: ~{...}:片段引用表达式
            <div th:insert="~{commons :: main}">...</div>

Literals(字面量)
      Text literals: 'one text' , 'Another one!' ,…
      Number literals: 0 , 34 , 3.0 , 12.3 ,…
      Boolean literals: true , false
      Null literal: null
      Literal tokens: one , sometext , main ,…
Text operations:(文本操作)
    String concatenation: +
    Literal substitutions: |The name is ${name}|
Arithmetic operations:(数学运算)
    Binary operators: + , - , * , / , %
    Minus sign (unary operator): -
Boolean operations:(布尔运算)
    Binary operators: and , or
    Boolean negation (unary operator): ! , not
Comparisons and equality:(比较运算)
    Comparators: > , < , >= , <= ( gt , lt , ge , le )
    Equality operators: == , != ( eq , ne )
Conditional operators:条件运算(三元运算符)
    If-then: (if) ? (then)
    If-then-else: (if) ? (then) : (else)
    Default: (value) ?: (defaultvalue)
Special tokens:
    No-Operation: _ 

相关文章:

  • 2021-12-13
  • 2021-11-19
  • 2021-08-25
  • 2022-01-01
  • 2021-07-14
  • 2022-12-23
  • 2021-11-10
猜你喜欢
  • 2021-11-17
  • 2021-09-21
  • 2022-12-23
  • 2021-11-24
  • 2021-11-13
  • 2022-12-23
  • 2021-04-24
相关资源
相似解决方案