Struts2 xml 验证复选框而不是 checkboxlist

发布于 2024-11-28 13:08:43 字数 152 浏览 1 评论 0原文

我有一种表单,其中包含一个复选框(不是复选框列表)和一个文本字段。 如果选中该复选框,则无需输入文本字段的值。 如果未选中该复选框,那么我需要验证文本字段是否为必填字段。 我怎样才能使用表达式验证器。这在struts2.0.11中可能吗?

让我知道

提前致谢

I have one form containing one checkbox(not checkbox list)and one textfield.
If the checkbox is cheked then no need to enter the value for textfield.
If the check box is not checked then I need to validate the textfield has mandatory.
How can I do using expression validator.Is this Possible in struts2.0.11.

Let me know

Thanks in advance

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

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

发布评论

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

评论(2

逐鹿 2024-12-05 13:08:43

使用字段表达式验证器。示例:

SomeAction.java

private SomeObject object; // with getter & setter
private boolean doNotCheck; // with setter

input.jsp

<s:textfield name="object.field" />
<s:checkbox name="doNotCheck" />
<s:fielderror fieldName="object.field" />

SomeAction.validation.xml

<validators>
    <field name="object.field">
        <field-validator type="fieldexpression">
            <param name="expression">
                <![CDATA[ isDoNotCheck() ? true : (object.field != null && !object.field.isEmpty()) ]]>
                <!-- OR -->
                <!-- isDoNotCheck() ? true : !object.field.isEmpty() -->
            </param>
            <message>This is a mandatory field</message>
        </field-validator>
    </field>
</validators>

Use fieldexpression validator. Example :

SomeAction.java

private SomeObject object; // with getter & setter
private boolean doNotCheck; // with setter

input.jsp

<s:textfield name="object.field" />
<s:checkbox name="doNotCheck" />
<s:fielderror fieldName="object.field" />

SomeAction.validation.xml

<validators>
    <field name="object.field">
        <field-validator type="fieldexpression">
            <param name="expression">
                <![CDATA[ isDoNotCheck() ? true : (object.field != null && !object.field.isEmpty()) ]]>
                <!-- OR -->
                <!-- isDoNotCheck() ? true : !object.field.isEmpty() -->
            </param>
            <message>This is a mandatory field</message>
        </field-validator>
    </field>
</validators>
朕就是辣么酷 2024-12-05 13:08:43

您可以在操作类中实现 validate() 方法并在其中添加验证代码。
有关详细信息,请阅读文档。
http://struts.apache.org/2.x/docs/form -validation.html

另一个选项是 xml 验证。
http://struts.apache.org/2.x/docs/validation.html

You can implement validate() method in your action class and add the validation code in it.
For details, please read the docs.
http://struts.apache.org/2.x/docs/form-validation.html

Another option is xml validation.
http://struts.apache.org/2.x/docs/validation.html

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