Thymeleaf字符串拼接
Thymeleaf字符串拼接:用+
符号,也可以用|
符号
th:text字符串拼接
user.name
从后台传来的变量,${user.name}
获得变量值。
文本连接
若user.name="张三"
,解析结果为:<span>Welcome,张三</span>
<span th:text="'Welcome,' + ${user.name}">
文字替换
文字替换可以方便的格式化包含变量的字符串,语法为| text substituion demo ${varialble} |
<span th:text="|Welcome, ${user.name}!|">
等效于
<span th:text="'Welcome, ' + ${user.name} + '!'">
文字替换本身可以和与其他表达式联合使用
<span th:text="${onevar} + ' ' + |${twovar}, ${threevar}|">
th:action字符串拼接
若user.userId=1
,解析结果为:<form action="/user/1"></form>
<form th:action="@{'/user/'+${user.userId}}"></form>
<form th:action="@{/user/{userId}(userId=${user.userId})}"></form>
版权声明:
作者:Joe.Ye
链接:https://www.appblog.cn/index.php/2023/02/25/thymleaf-string-concatenation/
来源:APP全栈技术分享
文章版权归作者所有,未经允许请勿转载。
THE END
0
二维码
打赏
海报
Thymeleaf字符串拼接
Thymeleaf字符串拼接:用+符号,也可以用|符号
th:text字符串拼接
user.name从后台传来的变量,${user.name}获得变量值。
文本连接
若user.name="张三&q……
文章目录
关闭
共有 0 条评论