Thymeleaf:如何获取URL属性值
问题内容:
我找不到使用Thymeleaf从URL获取属性的任何解决方案。例如,对于URL:
somesite.com/login?error=true
我需要获取“错误”属性值。如果有帮助,我也正在使用SpringMVC。
问题答案:
经过一番调查,我发现实际上是Spring EL问题。因此,使用null检查的完整答案是:
<div id="errors" th:if="${(param.error != null) and (param.error[0] == 'true')}">
Input is incorrect
</div>