我正在尝试通过 grails 标签设置链接.. 但它只显示控制器和操作名称
<g:link controller="email" action="sendpart" id="${mailObj?.to_id}">View inbox </g:link>
在 URL 中它只是显示给我
http://Demo/email/sendpart/2
而不是
http://localhost:8080/Demo/email/sendpart/2
谢谢你!
我正在尝试通过 grails 标签设置链接.. 但它只显示控制器和操作名称
<g:link controller="email" action="sendpart" id="${mailObj?.to_id}">View inbox </g:link>
在 URL 中它只是显示给我
http://Demo/email/sendpart/2
而不是
http://localhost:8080/Demo/email/sendpart/2
谢谢你!
添加absolute="true"
<g:link controller="email" action="sendpart" id="${mailObj?.to_id}" absolute="true">View inbox </g:link>
享受。
在g:link中添加base
url,如
<g:link controller="first" action="test" base="http://localhost:8080/myApp">Click</g:link>