struts 菜单 - “活动”菜单 CSS 不起作用
我在我的项目中使用 struts 菜单。
问题是活动菜单没有突出显示。我弄清楚了这个逻辑的位置 -
在 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
由于我尚未设置 $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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
我将代码添加到default.jsp 并且它起作用了!
我关闭我自己的问题。
I added the code to default.jsp and it worked!
I close my own issue.