Grails:从另一个标签库中调用一个标签库

发布于 2024-08-20 04:10:49 字数 343 浏览 5 评论 0 原文

我想定义我自己的标记库,它将使用 g:datePicker 生成一些输出。

class MyTagLib

  def myTag = {attrs ->
    // I need to invoke the `datePicker` tag of the the `FormTagLib` tag library
    // provided by Grails       
  }
}

当我调用此标签时,我想传递属性映射。当我调用 g:datePicker 时,我希望它将输出直接写入响应(就像在 GSP 中调用它时一样)。

我该怎么做? 谢谢。

I want to define my own taglib that will use the g:datePicker to generate some of it's output.

class MyTagLib

  def myTag = {attrs ->
    // I need to invoke the `datePicker` tag of the the `FormTagLib` tag library
    // provided by Grails       
  }
}

I want to pass along the attributes map when I invoke this tag. When I invoke g:datePicker I would like it to write it's output directly to the response (just as it does when you invoke it within a GSP).

How can I do this?
Thanks.

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

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

发布评论

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

评论(2

寂寞美少年 2024-08-27 04:10:49

输出<< g.datePicker(etc...) 应该可以做到。其他标记库前缀是自动元编程的。

out << g.datePicker(etc...) ought to do it. The other taglib prefixes are metaprogrammed in automatically.

对岸观火 2024-08-27 04:10:49

如果你想添加一个body,你需要传递一个闭包:
out<
out<

If you want to add a body, you need to pass a closure:
out<<g.link(action: x, {"This is a link to x"})
or out<<g.link(action: x) {"This is a link to x"}

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