Thymeleaf详解

Thymeleaf详解

表达式分为三种

  • 变量表达式
  • 选择或星号表达式
  • URL表达式

1.变量表达式

${user.name}

2.选择(星号)表达式

  • 使用th:object="${user}">定义下发要用到的对象,可以简化变量表达式
<tr th:each="user : ${all}" th:object="${user}">
    <td th:text="${user.id}">1</td>
    <td th:text="*{name}">张三</td>
    <td th:text="*{userName}">zhangsan</td>
</tr>

3.URL表达式

  • 格式
    • @{/请求地址(参数名=值,参数名=值)}
    • 所有表达式都要写在th指令里
<tr th:each="user : ${all}" th:object="${user}">
	<a th:href="@{/ServletURL(id=*{id})}">删除</a>
</tr>
  • 文本替换
    • |/请求地址/替换内容|
<tr th:each="user : ${all}" th:object="${user}">
	<a th:href="|/update/${user.id}|">修改</a>
</tr>
  • 字符拼接
    • ‘地址’+字符串
<tr th:each="user : ${all}" th:object="${user}">
	<a th:href="'/approve/'+*{id}">审核</a>
</tr>

常见表达式

  • 字面(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)
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值