Grails 在其他页面中渲染页面
我有一个带有表单的 gsp 页面,我想将其放入另一个 gsp 页面的 div
内。每个 gsp 页面都有不同的 'body' css 配置。是否可以在 Grails 中使用(如渲染)。
I have a gsp page with a form that I would like to put inside a div
in another gsp page. Each gsp page have diferent css configuration for 'body'. Is it possible to that that using in Grails (like render).
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
是的。事实上这很简单。最好将“公共”部分提取到单独的模板 (.gsp) 文件中,并将其包含到两个页面中。
有关详细信息,请参阅渲染。
Yes. In fact it's pretty simple. Best, extract the "common" part into a separate template (.gsp) file and include it into both pages.
See render for more information.