我有以下代码,我相信我需要在百里香中逃脱。
th:required=""
它会抛出以下错误:
org.thymeleaf.exceptions.TemplateProcessingException: Could not parse as expression: ""
有什么建议吗?
答案 0 :(得分:2)
问题不在于你需要逃避,而是你需要一个Thymeleaf可以解释为真或假的表达。 th:required="${expression}"
告诉它如果required
为真,则包含expression
属性,否则将其保留。如果您想无条件地包含它,请删除Thymeleaf命名空间并只包含一个普通的required="required"
。