0
0

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?

More than 3 years have passed since last update.

rails 部分テンプレート健忘禄

Posted at

#rails ~render 健忘禄~

共通部分のレイアウトをまとめて一つのファイルにしてそれを使い回す際に用いられる

code

index.html.erb
<render "パス" >

↑で記述したところに"_ファイル名.html.erb"のレイアウトが表示される。

  • パスの部分は部分テンプレートのファイル名がインスタンス変数の単数形
  • 部分テンプレートのファイル内で使う変数名が同一であること
    この条件を満たしていれば

code

index.html.erb
<render "@インスタンス変数名" >

と記述することができる。

0
0
0

Register as a new user and use Qiita more conveniently

  1. You get articles that match your needs
  2. You can efficiently read back useful information
  3. You can use dark theme
What you can do with signing up
0
0

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?