瓷砖2 + Struts2 XML 验证

发布于 2024-09-07 20:07:51 字数 388 浏览 2 评论 0原文

我有一个问题,我使用 Strits2、Tiles2 和 Struts xml 验证登录,当我运行 web 应用程序时,第一页是登录,struts2 xml 验证器向我发送错误,我如何告诉我第一次不要验证直到提交?

    <action name="loginPage"  class="com.webapp.login.action.LoginAction">
        <result name="input" type="tiles">loginPage</result>
        <result name="success" type="tiles">loginPage</result>
    </action>

i have a problem, i have my login with Strits2, Tiles2 and Struts xml validations, when i run my webapp the first page is the login and the struts2 xml validator send me the error, how do i tell that for the first time do not validate until submit?

    <action name="loginPage"  class="com.webapp.login.action.LoginAction">
        <result name="input" type="tiles">loginPage</result>
        <result name="success" type="tiles">loginPage</result>
    </action>

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

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

发布评论

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

评论(1

骷髅 2024-09-14 20:07:51

每当您想要进入“空白表单”时,您应该执行操作的 input() 方法。这告诉 Struts 2 您不想对该操作执行任何验证:

<action name="loginPage"  class="com.webapp.login.action.LoginAction" 
        method="input">
    <result name="input" type="tiles">loginPage</result>
    <result name="success" type="tiles">loginPage</result>
</action>

然后,您应该将登录表单提交到执行默认操作 execute() 的另一个操作定义。然后 Struts 2 将尝试执行 Action 验证:

<action name="loginPageSubmit"  class="com.webapp.login.action.LoginAction">
    <result name="input" type="tiles">loginPage</result>
    <result name="success" type="tiles">loginPage</result>
</action>

Whenever you want to go to a "blank form", you should execute the input() method of your Action. This tells Struts 2 that you do not want to perform any validation for the action:

<action name="loginPage"  class="com.webapp.login.action.LoginAction" 
        method="input">
    <result name="input" type="tiles">loginPage</result>
    <result name="success" type="tiles">loginPage</result>
</action>

Then, you should submit your login form to another action definition that executes the default action execute(). Struts 2 will then try to perform Action validation:

<action name="loginPageSubmit"  class="com.webapp.login.action.LoginAction">
    <result name="input" type="tiles">loginPage</result>
    <result name="success" type="tiles">loginPage</result>
</action>
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文