如何在 JSP 中获取 spring 错误计数
我试图在 JSP 中根据 JSP 中是否存在错误来有条件地执行某些操作,例如“
<c:choose>
<c:when test="${errors.errorCount > 0}">
<!-- do something -->
</c:when>
</c:choose>
然而,即使存在错误,它也始终评估为 false”。
正确的评价方法是什么?
I am trying to do something conditionally in my JSP depending on if there are errors or not in my JSP, something like
<c:choose>
<c:when test="${errors.errorCount > 0}">
<!-- do something -->
</c:when>
</c:choose>
However, it always evaluates as false, even when there are errors.
What is the correct way to evaluate this?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
您需要将其放入
spring:bind
标记中,并使用正确的name
属性来填充${errors}
:You need to put this in a
spring:bind
tag with the correctname
attribute for it to populate${errors}
: