如何调用grails资源插件的“使用”标签作为方法

发布于 2024-10-17 17:36:32 字数 380 浏览 3 评论 0原文

我正在尝试调用 资源插件 定义的标签。该标签的本地名称是“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 技术交流群。

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

发布评论

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

评论(1

一指流沙 2024-10-24 17:36:32

该插件非常新,甚至还没有正式发布 - 它仍处于候选发布阶段。所以 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/

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