我对某些操作使用不同的布局(主要用于大多数控制器中的新操作)。
我想知道指定布局的最佳方法是什么? (我在同一个控制器中使用3个或更多不同的布局)
我不喜欢使用
渲染:layout => '名称'
我喜欢做
layout'name',:only => [新]
但我不能用它来指定2个或更多不同的布局。
例如:
当我在同一个控制器中调用布局2次,使用不同的布局名称和不同的选项时,第一个被忽略 - 这些操作不会显示在我指定的布局中。
注意:我正在使用Rails 2。
答案 0 :(得分:281)
您可以使用方法设置布局。
class MyController < ApplicationController
layout :resolve_layout
# ...
private
def resolve_layout
case action_name
when "new", "create"
"some_layout"
when "index"
"other_layout"
else
"application"
end
end
end
答案 1 :(得分:186)
class ProductsController < ApplicationController
layout "admin", only: [:new, :edit]
end
或
class ProductsController < ApplicationController
layout "application", only: [:index]
end
答案 2 :(得分:46)
您可以使用respond_to指定单个操作的布局:
def foo
@model = Bar.first
respond_to do |format|
format.html {render :layout => 'application'}
end
end
答案 3 :(得分:11)
您还可以使用渲染指定操作布局:
def foo
render layout: "application"
end
答案 4 :(得分:8)
有一个gem(layout_by_action):)
layout_by_action [:new, :create] => "some_layout", :index => "other_layout"
答案 5 :(得分:7)
在控制器下指定布局的各种方法:
在以下代码中,在index下调用application_1布局,并在其他操作中调用用户控制器和应用程序布局(默认布局)的show动作。
class UsersController < ApplicationController
layout "application_1", only: [:index, :show]
end
在以下代码中,将为用户控制器的所有操作调用application_1布局。
class UsersController < ApplicationController
layout "application_1"
end
在以下代码中,仅对用户控制器的测试操作调用application_1布局,并调用所有其他操作应用程序布局(默认)。
class UsersController < ApplicationController
def test
render layout: "application_1"
end
end
答案 6 :(得分:4)
精确度:
上面看到的并不是真正有效的DRY方式,但精确度:布局需要在你的变量之后才能工作(“@ some”)。作为:
def your_action
@some = foo
render layout: "your_layout"
end
而不是:
def your_action
render layout: "your_layout"
@some = foo
@foo = some
end
如果你做了一个before_action ......它也不会起作用。
希望它有所帮助。