如何在 Struts 2 验证框架中验证布尔值

发布于 2024-09-17 18:31:22 字数 67 浏览 7 评论 0原文

简单:我必须确保选中表单上的隐私复选框。我尝试使用表达式验证器(和字段表达式验证器),但它不起作用。 有人可以帮助我吗?

Simple: I have to be sure the privacy checkbox on my form is checked. I tryed to use the expression validator (and the fieldexpression validator) but it does'n work.
Can anobody help me?

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

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

发布评论

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

评论(2

夜夜流光相皎洁 2024-09-24 18:31:22

您能提供更多信息吗?您是如何使用表达式验证器的,为什么它不起作用?看来这种方法应该很好用。

需要考虑一些事情:您的布尔值是否同时具有“getter”和“setter”方法?您的拦截器堆栈中是否同时具有“验证”和“工作流”拦截器(例如“defaultStack”)。

Can you provide more information? How were you using the expression validator, and why didn't it work? Seems like that approach should work fine.

A few things to consider: do you have both a "getter" and a "setter" method for your boolean? Do you have both the "validation" and the "workflow" interceptors in your interceptor stack (the "defaultStack" does, for example).

智商已欠费 2024-09-24 18:31:22

这对我有用:

<field name="agreeToPrivacy">
    <field-validator type="expression" >  
    <param name="expression">agreeToPrivacy == true</param>  
            <message>You must agree to the privacy agreement to continue.</message>  
    </field-validator>
</field>

This worked for me:

<field name="agreeToPrivacy">
    <field-validator type="expression" >  
    <param name="expression">agreeToPrivacy == true</param>  
            <message>You must agree to the privacy agreement to continue.</message>  
    </field-validator>
</field>
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文