struts2 中的日期验证

发布于 2024-07-26 07:03:28 字数 479 浏览 5 评论 0原文

我正在创建一个表单,用户将在其中注册 struts2 应用程序。 用户需要输入特定格式的日期。

由于我不打算使用 datepicker ajax 标签,因此我使用带有日期标签的文本字段,其形式如下:

<s:date name="birthDate" id="bDateId" format="yyyy-MM-dd"/>  
<s:textfield name="birthDate" id="%{bDateId}" label="Birth Date (yyyy-MM-dd)"/>

底层用户实体有一个 String 字段来表示日期。 所以我的问题是是否有一种直接的方法来对日期字段的用户输入格式应用验证。 struts2提供的日期验证器只能用于检查日期范围,但不能检查特定格式。

有人会推荐一种方法来做到这一点,或者不介意指出自定义验证器的示例吗?

谢谢你的建议 问候大家

I am creating a form where a user will register with a struts2 application. It will be required for the user to input a date in a specific format.

Since I am not going to use the datepicker ajax tag, I am using a textfield with a date tag in the form like this:

<s:date name="birthDate" id="bDateId" format="yyyy-MM-dd"/>  
<s:textfield name="birthDate" id="%{bDateId}" label="Birth Date (yyyy-MM-dd)"/>

The underlying user entity has a String field to represent the date. So my question is if there is a straighforward way to apply validation against the user input format for the date field. The date validator provided by struts2 can be used to check date ranges only, but not specific formats.

Would anyone recommend a way to do this, or wouldn;t mind pointing to an example of a custom validator?

Thanks for your advice
Regards to all

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

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

发布评论

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

评论(2

幸福丶如此 2024-08-02 07:03:29

您可能可以很容易地使用正则表达式验证器来验证这一点。 就像是:

<field name="birthDate">
  <field-validator type="regex">
      <param name="expression">[0-9][0-9][0-9][0-9]-[0-9][0-9]-[0-9][0-9]</param>
      <message>The value must be in the format yyyy-MM-dd</message>
 </field-validator>

You could probably pretty easily validate this with a regex validator. Something like:

<field name="birthDate">
  <field-validator type="regex">
      <param name="expression">[0-9][0-9][0-9][0-9]-[0-9][0-9]-[0-9][0-9]</param>
      <message>The value must be in the format yyyy-MM-dd</message>
 </field-validator>

月朦胧 2024-08-02 07:03:29

您可以使用日期验证器来验证这一点。 就像是:

   <field name="fecha">

        <field-validator type="date">
            <param name="min">01/01/1900</param>
            <param name="max">01/01/9999</param>
            <message key="error.fecha.rango.invalido"/>
        </field-validator>       
    </field>

You could validate this with a date validator. Something like:

   <field name="fecha">

        <field-validator type="date">
            <param name="min">01/01/1900</param>
            <param name="max">01/01/9999</param>
            <message key="error.fecha.rango.invalido"/>
        </field-validator>       
    </field>
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文