如何逃避百里香的双引号?

时间:2016-04-27 03:49:02

标签: java spring thymeleaf

我有以下代码,我相信我需要在百里香中逃脱。

th:required=""

它会抛出以下错误:

org.thymeleaf.exceptions.TemplateProcessingException: Could not parse as expression: ""

有什么建议吗?

1 个答案:

答案 0 :(得分:2)

问题不在于你需要逃避,而是你需要一个Thymeleaf可以解释为真或假的表达。 th:required="${expression}"告诉它如果required为真,则包含expression属性,否则将其保留。如果您想无条件地包含它,请删除Thymeleaf命名空间并只包含一个普通的required="required"