Grails url 未加载映射布局
Grails url mapping layout not loaded
我编辑了 UrlMappings.groovy 以将我的根“/”目录映射到一个特殊视图。
我做的是
"/"(controller: 'myController', action: 'index')
问题是未加载此索引视图中的布局。有什么提示吗?
提前致谢。
"/"(controller:'main', action:'index')
和
def index(){}
布局在
../grails-app/views/layouts/main.gsp
适合我。
[已编辑]
将你的图片移到这里,喜欢
../grails-app/assets/images/my-image.png
然后,使用
<g:img dir="images" file="my-image.png"/>
在您的页面中。
我编辑了 UrlMappings.groovy 以将我的根“/”目录映射到一个特殊视图。
我做的是
"/"(controller: 'myController', action: 'index')
问题是未加载此索引视图中的布局。有什么提示吗?
提前致谢。
"/"(controller:'main', action:'index')
和
def index(){}
布局在
../grails-app/views/layouts/main.gsp
适合我。
[已编辑]
将你的图片移到这里,喜欢
../grails-app/assets/images/my-image.png
然后,使用
<g:img dir="images" file="my-image.png"/>
在您的页面中。