如何在 JSP 中获取 spring 错误计数

发布于 2024-11-09 03:36:06 字数 270 浏览 0 评论 0原文

我试图在 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 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

倾听心声的旋律 2024-11-16 03:36:06

您需要将其放入 spring:bind 标记中,并使用正确的 name 属性来填充 ${errors}

<spring:bind name="yourstuff">
...
</spring:bind>

You need to put this in a spring:bind tag with the correct name attribute for it to populate ${errors}:

<spring:bind name="yourstuff">
...
</spring:bind>
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文