我如何从生成的控制器调用默认控制器的索引操作,或者如何从我的控制器渲染索引视图?
我不知道如何从生成的控制器操作中呈现默认控制器的索引视图。
有没有办法在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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
有几种方法可以做到这一点。最简单的情况是您应该根据处理视图的控制器/操作来命名视图。
例如,如果您的控制器是带有操作
index
的HomeController
,则您的视图应该是/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 actionindex
, 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.