在struts 2中显示验证消息

发布于 2024-10-31 21:45:47 字数 359 浏览 0 评论 0原文

我的应用程序中有一个表单,我想在其中验证用户输入。它有一个从数据库表填充的组合框。所以我必须首先转到操作类来填充它(例如:populateFormAction)。然后就会跳转到form.jsp页面。

但问题出在验证的时候。我已将 populateFormAction 设置为输入结果,如下所示

<result name="input" type="redirect">/populateFormAction</result>

但是当它返回到 form.jsp 时,它不会显示验证错误。我认为这是因为在 Action 处理程序和 form.jsp 之间使用了 populateFormAction。

I have a form in my application in which I want to validate the user inputs. It has a combo box which is populated from db table. So I have to go to the action class first to populate it(for eg: populateFormAction). Then it will go to form.jsp page.

But the problem is at the time of validation. I have set populateFormAction as input result as follows

<result name="input" type="redirect">/populateFormAction</result>

But when it returned to form.jsp, it doesn't show the validation errors. I think it is because of the use of populateFormAction in between Action handler and form.jsp.

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

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

发布评论

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

评论(2

不喜欢何必死缠烂打 2024-11-07 21:45:47

您的问题有两种解决方案

  1. 调用正在填充的方法
    返回 INPUT 之前的组合(如果
    存在任何验证错误)。和
    那么不要使用类型重定向,而是
    直接移至您的 form.jsp。的
    当然,如果
    你有填充组合并且
    在同一操作中验证方法
    类。

  2. 将操作错误作为参数传递给 populateFormAction
    如下。这里看看

我不是确定 actionError 后面是否会有 's',所以两者都尝试一下

There are two solutions to your problem

  1. Call the method which is populating
    the combo, efore returning INPUT (if
    there is any validation error). And
    then dont use type redirect, instead
    directly move to your form.jsp. Of
    course, this would be possible if
    you have the populate combo and
    validate methods in the same action
    class.

  2. Pass your action errors as parameters to the populateFormAction
    as follows.Take a look here

I m not sure whether there will be 's' after actionError or not, so try both

愁以何悠 2024-11-07 21:45:47

您可以使用“MessageStoreInterceptor”来保存消息。

you can use "MessageStoreInterceptor“ to preserve the messages.

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