如何找到 Struts 2 中最后一个操作的名称

发布于 2024-08-19 18:58:02 字数 174 浏览 0 评论 0原文

在我的项目中,我使用 Struts 2 和 Freemarker。如何从模板中找到最后一个操作的名称?

例如:
* 我有一个用于添加和编辑对象的 FTL 文件,
* 我希望能够找到最后的操作名称,例如。 ${actionContext.actionName}。

有办法做到这一点吗?

In my project I am using Struts 2 with Freemarker. How can I find last action's name from inside the template?

For example:
* I have one FTL file for adding and editing the object,
* I would like to be able to find last actions name eg. ${actionContext.actionName}.

Is there a way to do that?

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

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

发布评论

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

评论(1

怎会甘心 2024-08-26 18:58:02

我已手动渲染一个 lastAction 隐藏表单字段,设置为当前操作的名称。它是渲染期间的当前操作,但在表单 POST 或 GET 时将成为下一个请求的最后一个(或上一个)操作。

当当前用户操作(可能由之前的几个操作之一触发)由于某种原因失败时,恢复到上一个​​操作对我来说很有用。

I have manually rendered a lastAction hidden form field set to the current action's name. It is the current action during rendering, but will become the last (or previous) action on the next request when the form POSTs or GETs.

It's been useful for me to revert back to the last action when the current user action (which could be triggered from one of several previous actions) fails for some reason.

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