一、th:text
字符串拼接
user.name 从后台传来的变量,${user.name}
获得变量值。文本链接:用“+”
符号,也可以用“|”
符号。
若 user.name="张三",解析结果为:<span>Welcome,张三</span>
<span th:text="'Welcome,'+${user.name}">
<span th:text="|Welcome, ${user.name}|">
二、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>