我想使用thymeleaf显示一个用户的名字。这是我使用的html标签:
<h1 th:text="${username}"></h1>
我希望它显示如下:Hello, User
给定的用户名是字符串"User"我尝试这样做:
<h1 th:text="${username}">Hello, </h1>
但它没有工作。我该怎么修理它?
我个人更喜欢使用额外的标签。
<h1>Hello, <span th:text="${username}" /></h1>
或文字替换
<h1 th:text="|Hello, ${username}|"></h1>
作为引用字符串只会增加复杂性。
试试这个:
<h1 th:text="'Hello, ' + ${username}"></h1>
来源:https://www.wimdeblauwe.com/blog/2021/01/11/string-concatenation-with-thymeleaf/