thymeleaf自定义属性

Posted passedbylove

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了thymeleaf自定义属性相关的知识,希望对你有一定的参考价值。

例如我想给添加一个属性data-page,可以根据(SpringEL/Ognl)表达式计算获得。

需求:

期望效果

app个数大于0,有数据时链接

<xxx data-page="/app/list">

app个数等于0,没有数据时链接如下

<xxx data-page="/app/create">

解决方法:

切换到Thymeleaf的数据属性语法,使用data-属性名称和连字符-

摘录自:thymeleaf 3.0.5中文参考手册

<!DOCTYPE html>
<html>
<head>
<title>Good Thymes Virtual Grocery</title>
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8" />
<link rel="stylesheet" type="text/css" media="all" href="../../css/gtvg.css" data-th-href="@{/css/gtvg.css}" />
</head>
<body>
<p data-th-text="#{home.welcome}">Welcome to our grocery store!</p>
</body>

示例:

以下是笔者使用的代码

<dd class="I124_dd_usual I124_dd_usual2 pageChange"data-th-data-page="${user.appCount>0?‘/app/list‘:‘/app/create‘}">我的应用</dd>

实际生成代码

技术图片

 

以上是关于thymeleaf自定义属性的主要内容,如果未能解决你的问题,请参考以下文章

thymeleaf自定义属性

springboot thymeleaf 需要使用data-*,自定义属性,获取值怎么操作

使用片段时 Intellij 无法正确识别 Thymeleaf 模型变量

thymeleaf的特殊属性赋值

VS code自定义用户代码片段snippet

Thymeleaf(第九十一二章)本地变量#属性优先级#注释和块#内联