如何调用grails资源插件的“使用”标签作为方法
我正在尝试调用 资源插件 定义的标签。该标签的本地名称是“use”,它是一个 Groovy 关键字。我尝试用 : 调用它,
r.use( module:"jquery" )
ResourceTagLib.metaClass.invokeMethod( "use", [name:"jquery"])
r."use"( module:"jquery" )
但收到错误:
需要至少 2 个参数,一个类别和一个闭包
有什么办法解决吗?
I'm trying to invoke a tag defined by the resources plugin. The local name of this tag is "use" which is a Groovy keyword. I have tried calling it with :
r.use( module:"jquery" )
ResourceTagLib.metaClass.invokeMethod( "use", [name:"jquery"])
r."use"( module:"jquery" )
but I get the error:
Expecting at least 2 arguments, a category class and a Closure
is there any way around it?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
该插件非常新,甚至还没有正式发布 - 它仍处于候选发布阶段。所以 stackoverflow 可能是一个不好的地方来问这个问题,因为这里很少有人会使用它。
插件作者 (Marc Palmer) 正在关注一个新的 Grails 插件论坛,因此最好的办法是在那里提问: http://grails-plugins.847840.n3.nabble.com/
The plugin is very new and not even officially released - it's still in release-candidate stage. So stackoverflow is probably a bad place to ask this question since so few here would have used it.
There's a new Grails plugin forum that the plugin author (Marc Palmer) watches, so your best bet is to ask there: http://grails-plugins.847840.n3.nabble.com/