Grails 2.0:找不到名称为 [window] 的模块
我在 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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
好的,我通过在 Config.groovy 中声明指向 js 文件的模块来解决这个问题:
OK, I figured it out by declaring the module in Config.groovy pointing to the js file: