如何将自定义 taglib 标签的出现限制为每页一个?

发布于 2024-11-08 16:27:11 字数 73 浏览 0 评论 0原文

例如,当我希望 不可能在一页上多次出现时。

For example when i want <custom:footer/> to be impossible to appear multiple times on one page.

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

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

发布评论

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

评论(1

尾戒 2024-11-15 16:27:11

每次调用该标记时,都会在页面上下文中设置一个属性。如果该属性已经存在,则意味着当前页面已调用该标签,因此抛出异常。像这样的东西(未经测试)

class MyTagLib {

   def doIt = { attrs, body ->

       if (pageScope.invoked) {
           // throwTagError is a built-in method that is available in all tag libs
           thowTagError "this tag can only be invoked once per page"
       }

       pageScope.invoked = true

      // Now cure world poverty or whatever it is that your tag is supposed to do
   }
}

Every time the tag is called, set an attribute in the page context. If the attribute is already present, that means the tag has already been called for the current page, so throw an exception. Something like this (untested)

class MyTagLib {

   def doIt = { attrs, body ->

       if (pageScope.invoked) {
           // throwTagError is a built-in method that is available in all tag libs
           thowTagError "this tag can only be invoked once per page"
       }

       pageScope.invoked = true

      // Now cure world poverty or whatever it is that your tag is supposed to do
   }
}
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文