문제

I want to link to another gsp file.

I tried:

<li>
 <a href="/private/dashboard">Dashboard</a>
</li>

However, this results in http://localhost:8080/private/dashboard which is basically not where I want to go.

Any recommendations what I could change to link to my dashboard.gsp?

도움이 되었습니까?

해결책

You have to add a mapping to UrlMappings.groovy to make your link point to a GSP view:

"/private/dashboard" (view:"/private/dashboard")

다른 팁

you can use the <g:link>-Tag to create a Link to a controller action.

See http://grails.org/doc/latest/ref/Tags/link.html

라이센스 : CC-BY-SA ~와 함께 속성
제휴하지 않습니다 StackOverflow
scroll top