我有一个全局应用程序布局文件application.html.haml的应用程序.然后我有多个“控制器堆栈”:对于我们的主站点,我们的管理员门户和我们的业务站点.对于这些中的每一个,控制器都在一个模块内,并且都从相同的BaseController继承.每个堆栈都有自己的布局文件.在栈内,一些控制器也有布局文件.
我希望所有视图(除非另有说明)在多层次的嵌套布局中呈现:应用程序,“堆栈”,“控制器”.
例如,对于Site :: BlogController#show操作,我希望rails渲染:
/site/blog/show.html.haml里面/layouts/site/blog.html.haml里面/layouts/site.html.haml里面的/layouts/application.html.haml
我很难理解如何将/layouts/site.html.haml插入到堆栈中.看起来好像是自动地,rails会在应用程序布局中的控制器布局内渲染动作,但是我看不到如何将布局插入到渲染堆栈中.
任何帮助是非常感谢,但是,我已经阅读所有的导轨指南无效,所以http://guides.rubyonrails.org/layouts_and_rendering.html#using-nested-layouts的链接不会真的有帮助.
解决方法
我重读了我发布的链接(
http://guides.rubyonrails.org/layouts_and_rendering.html#using-nested-layouts),意识到我错过了一个关键的细节.
<%= render :file => 'layouts/application' %>
所以在Site :: BaseController我有一个调用布局’站点’和在/layouts/site.html.haml我有
= content_for :footer do -#Content for footer = render :file => 'layouts/application'
然后在Site :: BlogController中扩展了Site :: BaseController,我有布局’site / blog’,在/layouts/site/blog.html.haml我有
=content_for :header do %h1 HELLO WORLD! = render :file => 'layouts/site'
这样就会按照问题的描述呈现嵌套的布局.抱歉在我的问题中错过了这一点.我应该看得更近了