Grails 2.0:找不到名称为 [window] 的模块

发布于 2024-12-16 14:05:44 字数 301 浏览 0 评论 0原文

我在 Grails 2.0 中使用 jQuery 和 Resources 插件,并在布局中使用以下内容:

    <g:javascript library="jquery" />
    <r:layoutResources/>

单击使用该布局的视图中的链接时,我在控制台中收到以下错误:

No module found with name [window]

我在这里缺少什么?

谢谢乔纳斯

I am using the jQuery and Resources plugins in Grails 2.0 with the following in my layout:

    <g:javascript library="jquery" />
    <r:layoutResources/>

When clicking on a link in a view using that layout I get the following error in the console:

No module found with name [window]

What am I missing here?

Thanks

Jonas

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

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

发布评论

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

评论(1

雨落□心尘 2024-12-23 14:05:44

好的,我通过在 Config.groovy 中声明指向 js 文件的模块来解决这个问题:

grails.resources.modules = {
    application {
        resource url:'/js/application.js'
    }
    window {
        resource url:'/js/window.js'
    }
    effects {
        resource url:'/js/effects.js'
    }
    prototype {
        resource url:'/js/prototype/prototype.js'
    }
}

OK, I figured it out by declaring the module in Config.groovy pointing to the js file:

grails.resources.modules = {
    application {
        resource url:'/js/application.js'
    }
    window {
        resource url:'/js/window.js'
    }
    effects {
        resource url:'/js/effects.js'
    }
    prototype {
        resource url:'/js/prototype/prototype.js'
    }
}
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文