Struts2中如何获取freemarker中的action名称?

发布于 2024-11-25 13:16:33 字数 175 浏览 0 评论 0原文

例如 http://localhost/market/pcsuite/edit.action

我可以获得操作名称“在 freemarker 文件 edit.flt 中编辑“?

e.g http://localhost/market/pcsuite/edit.action

Can I get the action name "edit" in the freemarker file edit.flt?

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

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

发布评论

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

评论(1

和影子一齐双人舞 2024-12-02 13:16:33
<@s.property value="com.opensymphony.xwork2.ActionContext.name" />

或者

<@s.set var="actionName" value="com.opensymphony.xwork2.ActionContext.name" />

<#-- Use as -->

<@s.property value="actionName" />

<#-- Or other FreeMarker Tags -->

或者

action类中创建一个getter,例如

public String getActionName() {
    return ActionContext.getContext().getName();
}

<@s.property value="actionName" />
<@s.property value="com.opensymphony.xwork2.ActionContext.name" />

Or

<@s.set var="actionName" value="com.opensymphony.xwork2.ActionContext.name" />

<#-- Use as -->

<@s.property value="actionName" />

<#-- Or other FreeMarker Tags -->

Or

Create a getter in action class, e.g.

public String getActionName() {
    return ActionContext.getContext().getName();
}

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