struts 菜单 - “活动”菜单 CSS 不起作用

发布于 2024-10-06 02:16:13 字数 771 浏览 0 评论 0原文

我在我的项目中使用 struts 菜单。

问题是活动菜单没有突出显示。我弄清楚了这个逻辑的位置 -

在 ccHorizo​​ntalMenu.vm 中,

#if ($menu.name == $currentMenu)
    <a href="$url" title="$title" class="current" #if($menu.target)target="$menu.target" #end#if($menu.width)style="width: ${menu.width}px"#end>${title}</a>
#else
    <a href="$url" title="$title" #if($menu.target)target="$menu.target" #end#if($menu.width)style="width: ${menu.width}px"#end>${title}</a>
#end

由于我尚未设置 $currentMenu 变量,因此条件失败并且 #else 正在执行。在谷歌搜索上我发现 $currentMenu 应该像这样设置 -

<c:set var="currentMenu" scope="request"><decorator:getProperty property="meta.menu"/></c:set>

但我不知道在哪里设置它....meta.menu 定义在哪里?

有什么想法吗?

I am using struts menu in my project.

The problem is the active menu does not get high lighted. I figured out where the logic for this is -

In ccHorizontalMenu.vm

#if ($menu.name == $currentMenu)
    <a href="$url" title="$title" class="current" #if($menu.target)target="$menu.target" #end#if($menu.width)style="width: ${menu.width}px"#end>${title}</a>
#else
    <a href="$url" title="$title" #if($menu.target)target="$menu.target" #end#if($menu.width)style="width: ${menu.width}px"#end>${title}</a>
#end

Since I have not set the $currentMenu variable the condition is failing and #else is getting executed. On googling I found $currentMenu should be set like this -

<c:set var="currentMenu" scope="request"><decorator:getProperty property="meta.menu"/></c:set>

but I dont know where to set it....also where is meta.menu defined??

Any ideas?

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

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

发布评论

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

评论(1

巾帼英雄 2024-10-13 02:16:13

我将代码添加到default.jsp 并且它起作用了!

我关闭我自己的问题。

I added the code to default.jsp and it worked!

I close my own issue.

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