读取表单 bean 属性以传递给转发

发布于 2024-11-26 15:36:40 字数 176 浏览 0 评论 0原文

我使用的是struts 1.3。我有一个在 3 种不同情况下重复使用的操作。支持此功能的表单 bean 有一个属性,该属性具有完整路径(从 jsp 传递),在成功/失败的情况下操作应转发到该路径(每种情况的路径都不同,具体取决于用户正在执行的操作)。如何为 struts 配置中的操作的输入属性指定此属性以从该表单 bean 属性中读取。

I am using struts 1.3. I have a an action I am reusing in 3 different cases. The form bean backing this has a property that has the complete path(passed from the jsp) to which the action should forward in case of success/failure(the path is different for each case depending on what the user is doing). How do I specify this for the input attribute of the action in the struts config to read from that form bean property.

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

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

发布评论

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

评论(1

太阳公公是暖光 2024-12-03 15:36:40

您可以做的是从 Action 类返回动态 ActionForward。这允许您使用 struts-config.xml 中未定义的 ActionForward

return new ActionForward(path_to_forward, redirect_true_or_false);

这对您的输入没有帮助,它需要 JSP< /code> 而不是 ActionForward,但您应该能够在 ActionFormvalidate() 方法中执行此操作。传递到该方法的第一个参数是 ActionMapping。在该对象上,您应该能够使用 JSP 的路径调用 setInput(String)。我还没有尝试过这个,但看起来应该可行。

What you can do is return a dynamic ActionForward from your Action class. This lets you use an ActionForward that isn't defined in yourstruts-config.xml

return new ActionForward(path_to_forward, redirect_true_or_false);

This doesn't help you for the input, which expects a JSP and not an ActionForward, but you should be able to do that in the ActionForm's validate() method. The first parameter passed into that method is an ActionMapping. On that object, you should be able to call setInput(String) with the path of your JSP. I have not tried this, but it looks like it should work.

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