我在使用插件时遇到问题。一切似乎都很好,但在开发环境中运行应用程序后,页面加载但抱怨找不到编译的 css 文件。我正在使用 Grails 2.0.1 和 lesscss-resources 1.3.0。
这是我在 UiResources.groovy 中的内容:
styling {
defaultBundle 'styling'
resources url: '/less/mainStyles.less', attrs:[rel: "stylesheet/less", type: 'css'], disposition: 'head', bundle: 'bundle_styling'
resources url: '/css/other.css', disposition: 'head'
}
页面上显示的是这样的:
< link href="/appName/bundle-bundle_styling_head.css" type="text/css" media="screen, projection" rel="stylesheet" >
虽然我可以在
~/.grails/2.0.1/projects/appName/tomcat/worl/Tomcat/localhost/appName/grails-resources ...
Grails 控制台也抱怨:
Resources not found: /bundle-bundle_styling_head.css
我一直在尝试不同的事情来让它发挥作用,直到无济于事。我在这里做错了吗?