Grails 渲染模板不同的控制器/路径
我有一个模板存在于views/dashboard/_myTemplate.gsp 下,我可以从DashboardController 简单地调用
render template:'myTemplate'
,一切都很好。我需要从不同的控制器渲染此模板,但渲染方法不允许您指定控制器,而且我似乎无法弄清楚如何定义模板存在的路径以使渲染正常工作。这可能吗?
I have a template that exists under views/dashboard/_myTemplate.gsp and from the DashboardController I can simply call
render template:'myTemplate'
and all is well. I have a need to render this template from a different controller but the render method doesn't allow you to specify a controller and I can't seem to figure out how to define the path at which the template exists for the render to work correctly. Is this even possible?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
您可以通过控制器名称来完成此操作:
You do it by controller name: