如何从多个控制器调用视图?

发布于 2024-09-26 06:18:05 字数 131 浏览 2 评论 0原文

我有多个控制器有自己的视图(Index.html)。现在,我想创建另一个控制器(说“欢迎”),并且我想将所有其他控制器的视图包含到“欢迎”的视图中,以便所有视图都在单个页面上可用,并且每当我创建欢迎页面时都会自动更新更改任何控制器的任何单独索引页。

I have multiple controllers having their own views (Index.html). Now, I want to create another controller (Say "Welcome") and I want to include views of all other controllers into the view of "Welcome", so that all the views are available on single page and welcome page gets updated automatically whenever I change any individual index page of any controller.

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

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

发布评论

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

评论(1

灼疼热情 2024-10-03 06:18:06

如果您想在其他控制器视图中拥有一个控制器的视图,您应该将第一个视图渲染为文件 <%=render 'controller/action'%> 在这种情况下,您必须分配所有变量构建此视图所必需的(在操作内分配的所有变量)但是您将在控制器布局中渲染此视图,如果您有一些过滤器,则还必须将它们应用到新控制器

If you whant to have view of one controller inside other controllers view you should render first view as a file <%=render 'controller/action'%> and in such case you must assign all variables that are neccessary for building this view(all variables that are assigned inside action) But you'll render this view inside your controllers layout and if you have some filters you also must apply them to the new controller

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