尝试在模板中连接多个值时遇到问题。 根据Thymeleaf here,我应该能够一起+他们......
4.6加强文字
文本,无论它们是文字还是评估变量或消息的结果 表达式,可以使用+运算符轻松连接:
th:text="'The name of the user is ' + ${user.name}"
以下是我发现的工作示例:
<p th:text="${bean.field} + '!'">Static content</p>
然而,这不是:
<p th:text="${bean.field} + '!' + ${bean.field}">Static content</p>
逻辑上,这应该有效,但不是,我做错了什么?
的Maven:
<dependency>
<groupId>org.thymeleaf</groupId>
<artifactId>thymeleaf-spring3</artifactId>
<version>2.0.16</version>
<scope>compile</scope>
</dependency>
以下是我如何设置TemplateEngine和TemplateResolver:
<!-- Spring config -->
<bean id="templateResolver" class="org.thymeleaf.templateresolver.ClassLoaderTemplateResolver">
<property name="suffix" value=".html"/>
<property name="templateMode" value="HTML5"/>
<property name="characterEncoding" value="UTF-8"/>
<property name="order" value="1"/>
</bean>
<bean id="templateEngine" class="org.thymeleaf.spring3.SpringTemplateEngine">
<property name="templateResolver" ref="fileTemplateResolver"/>
<property name="templateResolvers">
<list>
<ref bean="templateResolver"/>
</list>
</property>
ThymeleafTemplatingService:
@Autowired private TemplateEngine templateEngine;
.....
String responseText = this.templateEngine.process(templateBean.getTemplateName(), templateBean.getContext());
AbstractTemplate.java:
public abstract class AbstractTemplate {
private final String templateName;
public AbstractTemplate(String templateName){
this.templateName=templateName;
}
public String getTemplateName() {
return templateName;
}
protected abstract HashMap<String, ?> getVariables();
public Context getContext(){
Context context = new Context();
for(Entry<String, ?> entry : getVariables().entrySet()){
context.setVariable(entry.getKey(), entry.getValue());
}
return context;
}
}
答案 0 :(得分:141)
但是从我看到你的语法中有一个非常简单的错误
<p th:text="${bean.field} + '!' + ${bean.field}">Static content</p>
正确的语法看起来像
<p th:text="${bean.field + '!' + bean.field}">Static content</p>
事实上,语法th:text="'static part' + ${bean.field}"
等于th:text="${'static part' + bean.field}"
。
试一试。尽管这可能在6个月之后变得毫无用处。
答案 1 :(得分:29)
您可以通过在||
字符之间隐藏简单/复杂表达式来连接多种表达式:
<p th:text="|${bean.field} ! ${bean.field}|">Static content</p>
答案 2 :(得分:0)
请注意,使用| char,您可以通过IDE收到警告, 例如,我收到有关IntelliJ最新版本的警告, 因此,最好的解决方案是使用以下语法:
th:text="${'static_content - ' + you_variable}"
答案 3 :(得分:0)
我们可以像这样进行连接:
<h5 th:text ="${currentItem.first_name}+ ' ' + ${currentItem.last_name}"></h5>