用taglib、jsp、JS封装menuItem?

发布于 2024-08-07 08:48:07 字数 540 浏览 6 评论 0原文

当我使用 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 技术交流群。

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

发布评论

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

评论(2

颜漓半夏 2024-08-14 08:48:07

有一个名为 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.

自由如风 2024-08-14 08:48:07

使用自定义标签当然是可能的,但在自定义标签中包含其他标签可能会很麻烦。 Facelets 是 JSP 的一个很好的替代品,它实际上已经在 J​​2EE6 的 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.

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