Grails 渲染模板不同的控制器/路径

发布于 2024-09-08 01:40:18 字数 216 浏览 2 评论 0原文

我有一个模板存在于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 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

萌酱 2024-09-15 01:40:18

您可以通过控制器名称来完成此操作:

render(template:'/dashboard/myTemplate')

You do it by controller name:

render(template:'/dashboard/myTemplate')
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文