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>
以上是 Thymeleaf:如何获取URL属性值 的全部内容, 来源链接: utcz.com/qa/408638.html