用taglib、jsp、JS封装menuItem?
当我使用 Dojo MenuItem 小部件时,如何封装菜单项的身份验证逻辑、URL 和标签?
我目前拥有的是:
<auth:isRole role="admin">
<div dojoType="widget.Menu.MenuItem">
<a href="<html:rewrite page="... complicated url ..."/>">
<bean:message key="label.goes.here"/>
</a>
</div>
</auth:isRole>
我想要实现的目标是:
<util:menuitem role="admin" link="...complicated url..." label="label.goes.here" />
这可以使用自定义标签来实现吗? 是否还有其他选项可以使用 Ajax 或 JS 帮助程序?
How could I encapsulate the authentication logic, the URL and the label of a Menu item when I make use of e.g. a Dojo MenuItem widget?
What I currently have is this:
<auth:isRole role="admin">
<div dojoType="widget.Menu.MenuItem">
<a href="<html:rewrite page="... complicated url ..."/>">
<bean:message key="label.goes.here"/>
</a>
</div>
</auth:isRole>
And what I would like to achieve would be something like:
<util:menuitem role="admin" link="...complicated url..." label="label.goes.here" />
Is this possible to implement with a custom tag?
Would there be other options to use Ajax or JS helpers?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
有一个名为 Struts Menu 的项目,它是 taglib、配置文件和 Velocity 模板的组合封装菜单显示逻辑和安全性。我认为 Dojo 菜单没有现成的 Velocity 模板,但编写一个模板应该不难。
There's a project called Struts Menu that is a combination of a taglib, a config file, and Velocity templates to encapsulate menu display logic and security. I don't think there's an existing Velocity template for Dojo menus, but it shouldn't be difficult to write one.
使用自定义标签当然是可能的,但在自定义标签中包含其他标签可能会很麻烦。 Facelets 是 JSP 的一个很好的替代品,它实际上已经在 J2EE6 的 J2EE 规范中取代了它。它允许您通过其他组件创建自定义标签。查看此,因为它是一个很好的教程。
It most certainly is possible with a custom tag but including other tags in a custom tag can be ornery. Facelets is a good alternative to JSP that has actually replaced it in the J2EE spec for J2EE6. It allows you to create custom tags via other components. Check out this as it is a good tutorial.