ControllerやActionごとにレイアウトテンプレートの出し分け
709 ワード
はじめに
ControllerやActionごとにレイアウトテンプレートを出し分けたいときTips
デフォルトではapp/views/layouts/application.html.erb
が呼び出されます
Controller
class hogehoge < ApplicationController
layout '呼び出したいテンプレート'
def hogehoge
end
end
Action
class hogehoge < ApplicationController
def hogehoge
render :layout => '呼び出したいテンプレート'
end
end
class hogehoge < ApplicationController
layout '呼び出したいテンプレート'
def hogehoge
end
end
class hogehoge < ApplicationController
def hogehoge
render :layout => '呼び出したいテンプレート'
end
end
Author And Source
この問題について(ControllerやActionごとにレイアウトテンプレートの出し分け), 我々は、より多くの情報をここで見つけました https://qiita.com/kawasakiatsushi/items/6aa1aa5486b679b1f44f著者帰属:元の著者の情報は、元のURLに含まれています。著作権は原作者に属する。
Content is automatically searched and collected through network algorithms . If there is a violation . Please contact us . We will adjust (correct author information ,or delete content ) as soon as possible .