如何找到 Struts 2 中最后一个操作的名称
在我的项目中,我使用 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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
我已手动渲染一个
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.