在rails应用程序的ruby中使用application.html.erb以外的布局?

时间:2012-06-08 09:08:05

标签: ruby-on-rails templates

如何在RoR应用程序中创建和使用新模板而不是application.html.erb?为了获得另一个模板,我需要更改哪些设置?

1 个答案:

答案 0 :(得分:10)

实际上,默认情况下,所有控制器都会在/views/layouts文件夹中搜索同名布局,并回退到application.html.erb。例如,UsersController将搜索users.html.erb。无论如何,要在控制器旁边使用其他布局添加:

class UsersController < ApplicationController
  layout 'custom'
end