我想定义我自己的 taglibg: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 中调用它一样)。
我怎样才能做到这一点?谢谢。