struts2验证

发布于 2024-07-17 03:59:23 字数 389 浏览 2 评论 0原文

我在表单中有一个文本字段和一个选择框(用户可以通过 ctrl 键选择多个值)。

我正在阅读struts2提供的验证: http://struts.apache.org/ 2.x/docs/validation.html

但是,它似乎没有我需要的验证。

我想仅当从选择框中选择某些字符串时才将文本字段设为必填字段。

我是否必须为此目的编写一个自定义验证器,或者是否有更简单的方法在 struts2 中实现此目的?

谢谢!

PS:我想知道其他语言/框架也如何处理这种情况。

I have a text field and a selectbox (users can select multiple values by ctrl) in a form.

I was reading validation provided by struts2: http://struts.apache.org/2.x/docs/validation.html

However, it doesnt seem to have the validation I need.

I want to make the text field a required field ONLY when certain strings are selected from the selectbox.

Do I have to write a custom validator for this purpose or is there a simpler way to achieve this in struts2.

thanks!

PS: I would like to know how other languages/frameworks might handle this case also.

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

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

发布评论

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

评论(1

稳稳的幸福 2024-07-24 03:59:23

表达式字段表达式 适合检查依赖于其他字段的字段。 例如,要检查已确认的电子邮件地址,您可以执行以下操作:

<field name="confirmAddress">
    <field-validator type="fieldexpression">
        <param name="expression">address == confirmAddress</param>
        <message key="nomatch"/>
    </field-validator>
</field>

创建自定义验证器虽然很简单,但易于重用。

Expression or field expression caters for checking fields dependent on other fields. For example, to check for a confirmed email address you could do the following:

<field name="confirmAddress">
    <field-validator type="fieldexpression">
        <param name="expression">address == confirmAddress</param>
        <message key="nomatch"/>
    </field-validator>
</field>

Creating a custom validator is trivial though, and easy to reuse.

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