我正在尝试通过grails标签设置链接。但是它只是向我显示 Controller 和 Action 名称
<g:link controller="email" action="sendpart" id="${mailObj?.to_id}">View inbox </g:link>
在网址中,它只是向我显示
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>
请享用。