如何将 spring 错误标签逻辑与 jstl 逻辑结合起来
我有以下 div 用于显示我的 spring 消息。 errorContainer DIV 和 errText UL 包含用于显示错误图标和格式化错误消息文本的类。
<c:if test="${not empty modelAttr}">
<spring:hasBindErrors name="${modelAttr}">
<div class="errorContainer">
<ul class="errText">
<form:errors path="*" element="li" delimiter=</li><li>" />
</ul>
</div>
</spring:hasBindErrors>
</c:if>
我还想使用 errorContainer(或重复的 div)来显示我的 jquery 错误消息。我需要弄清楚如何重写前面的 jstl 和 spring 标签逻辑,以便仅当上面的 c:if 和 spring:hasBindErrors 标签一起评估为 false 时才在页面上放置另一个 div。我需要将我的条件基于这两个标签的结果,而不将我的新 div 放入其中。
I have the following div for displaying my spring messages. errorContainer DIV and errText UL contain the classes to show my error icon and format my error message text.
<c:if test="${not empty modelAttr}">
<spring:hasBindErrors name="${modelAttr}">
<div class="errorContainer">
<ul class="errText">
<form:errors path="*" element="li" delimiter=</li><li>" />
</ul>
</div>
</spring:hasBindErrors>
</c:if>
I want to also use the errorContainer(or a duplicate div) for my jquery error messages. I need to figure out how to rewrite the previous jstl and spring tag logic to put another div on the page only when the c:if and spring:hasBindErrors tags above evaluate to false together. I need to base my conditional on the outcome of both of these tags without putting my new div within them.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
您能否在 jstl 标记中添加另一个条件来检查何时满足您的条件?
Could you just add another condition in the jstl tag to check when your conditions are met?