我如何从生成的控制器调用默认控制器的索引操作,或者如何从我的控制器渲染索引视图?

发布于 2024-11-05 22:56:11 字数 84 浏览 1 评论 0原文

我不知道如何从生成的控制器操作中呈现默认控制器的索引视图。

有没有办法在grails 中做到这一点。请告诉我。

预先致谢,

I am not getting how can I render index view of default controller from my generated controller action.

Is there any way to do that in grails. Please let me know.

With advance thanks,

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

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

发布评论

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

评论(1

凉城凉梦凉人心 2024-11-12 22:56:11

有几种方法可以做到这一点。最简单的情况是您应该根据处理视图的控制器/操作来命名视图。

例如,如果您的控制器是带有操作 indexHomeController,则您的视图应该是 /view/home/index.gsp。这就是所谓的 Grails 哲学——约定优于配置。

如果你想让一个动作渲染一个特定的视图,你可以使用 render 命令。

您应该通过 Grails 文档 - Web 轻松搞清楚它层

There's several way to do that. The simplest case is that you should name your view according to the controller/action that handle it.

For example, if your controller is HomeController with action index, your view should be /view/home/index.gsp. This's called Grails philosophy - Convention Over Configuration.

If you want to make an action render a specific view, you can use render command.

You should easily figure it out with the Grails document - Web layer.

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