0
0

More than 1 year has passed since last update.

部分テンプレート

Last updated at Posted at 2022-08-30

繰り返し使用するコードを切り出し、ひとつのファイルで管理するもの。

_ 〇〇.html.erb

部分テンプレートとして切り出すファイル名は、命名規則として先頭に_(アンダーバー)をつける

_sample.html.erb

render , partial , locals

test.erb
# _sample.html.erbというファイルを表示させ、hello!が代入された変数postが使えるようになる
<%= render partial: "ディレクトリ名/sample", locals: { post: "hello!" } %>

render...部分テンプレートを呼び出すメソッド
partial...部分テンプレートのファイル名を指定し、表示させる
locals...記入した変数を、部分テンプレート内で使用できる

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