سؤال

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