Thymeleaf:<label> 将动态文本与静态文本连接 Spring MVC
Thymeleaf: <label> to have dynamic text concatenated with static text Spring MVC
我正在尝试将一些文本附加到动态文本,如下所示:
<label th:text="Hello ${worldText}"></label>
但是 UI 抛出:
TemplateProcessingException: Could not parse as expression: "Hello ${worldText}
有谁知道我怎样才能做到这一点?
一个简单的解决方案是在标签中插入跨度:
<label>Hello <span th:text="${worldText}"></span></label>
但我更愿意像这样组合文本和变量:
<label th:text="'Hello' + ${worldText}"></label>
另一个简单的解决方案是
<label th:text="${'Hello ' + worldText}"></label>
我正在尝试将一些文本附加到动态文本,如下所示:
<label th:text="Hello ${worldText}"></label>
但是 UI 抛出:
TemplateProcessingException: Could not parse as expression: "Hello ${worldText}
有谁知道我怎样才能做到这一点?
一个简单的解决方案是在标签中插入跨度:
<label>Hello <span th:text="${worldText}"></span></label>
但我更愿意像这样组合文本和变量:
<label th:text="'Hello' + ${worldText}"></label>
另一个简单的解决方案是
<label th:text="${'Hello ' + worldText}"></label>