Struts2 - 验证和验证瓷砖参数

发布于 2024-10-25 21:43:52 字数 1185 浏览 3 评论 0原文

所以,我的场景如下。

  1. 页面通过调用带有articleId参数的newInfo.action来显示文章
  2. 表单操作将调用postComment.action
  3. postComment.action将调用validate()
  4. validate()返回验证错误。
  5. * 问题就在这里,我如何返回图块并收到验证错误?

我的struts.xml

<action name="newInfo" class="org.blog.controller.NewInfo">
    <result type="tiles" name="success">NewInfo</result>
</action>
<action name="postComment" class="org.blog.controller.CommentController">
    <result type="redirectAction" name="success">newInfo?id=${articleId}</result
    <result type="redirect" name="input">newInfo.action?id=${articleId}</result>
</action>

CommentController.java

public void validate() {
    if(getName().length() == 0)
        addFieldError("name", "Name is required");
    if(getEmail().length() == 0)
        addFieldError("email", "Email is required");
    if(getCurrentURL().length() == 0)
        addFieldError("website", "Website is required");

    if(hasFieldErrors())
        System.out.println("Field error.");

}

当前,页面结果为文章页面,有“字段错误”,但页面没有显示任何字段错误。 那么,有什么解决方案可以解决吗?

So, my scene is below.

  1. The page show Article by call newInfo.action with articleId parameter
  2. The form action will call postComment.action
  3. postComment.action will call validate()
  4. validate() return the validation error.
  5. * The problem is here, how can i return to tile and getting validation error?

My struts.xml

<action name="newInfo" class="org.blog.controller.NewInfo">
    <result type="tiles" name="success">NewInfo</result>
</action>
<action name="postComment" class="org.blog.controller.CommentController">
    <result type="redirectAction" name="success">newInfo?id=${articleId}</result
    <result type="redirect" name="input">newInfo.action?id=${articleId}</result>
</action>

CommentController.java

public void validate() {
    if(getName().length() == 0)
        addFieldError("name", "Name is required");
    if(getEmail().length() == 0)
        addFieldError("email", "Email is required");
    if(getCurrentURL().length() == 0)
        addFieldError("website", "Website is required");

    if(hasFieldErrors())
        System.out.println("Field error.");

}

Current, the page result the article page, with "field error", but the page doesnt show any field error.
So, is there any solutions to fix it?

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

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

发布评论

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

评论(2

情独悲 2024-11-01 21:43:52

将 type="redirect" 更改为 type="chain" 请参阅: http:// /struts.apache.org/2.0.14/docs/result-types.html 了解更多详细信息。

Change type="redirect" to type="chain" see: http://struts.apache.org/2.0.14/docs/result-types.html for more details.

别闹i 2024-11-01 21:43:52

试试这个:

<action name="postComment" class="org.blog.controller.CommentController">
         <interceptor-ref name="store">
            <param name="operationMode">STORE</param>
         </interceptor-ref>
         <interceptor-ref name="defaultStack" />        
         <result type="redirectAction" name="success">newInfo?id=${articleId}</result
         <result type="tiles" name="input">NewInfo</result>
</action>

Try this:

<action name="postComment" class="org.blog.controller.CommentController">
         <interceptor-ref name="store">
            <param name="operationMode">STORE</param>
         </interceptor-ref>
         <interceptor-ref name="defaultStack" />        
         <result type="redirectAction" name="success">newInfo?id=${articleId}</result
         <result type="tiles" name="input">NewInfo</result>
</action>
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文