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 1 year has passed since last update.

パーシャルのオプションを使うには

Last updated at Posted at 2023-01-18

エラーになる

.
.
.
<%= render '*****/******', locals: {variable: @user} %>
.
.
.

undefined local variable or method `variable' for #<ActionView::Base:********>

どうしてローカル変数を設定したが、定義されていないと書かれてある。

ドキュメントをじっくり読んでみた

:layoutなどの追加オプションも渡す場合は、:partialオプションも明示的に指定する必要があります。

出典

修正

<%= render partial: '******/********', locals: {variable: @user} %>

成功!

感想

しっかり使うときは公式のドキュメントを読んでおく必要がある。
同じビューで変数だけを変えたいときはパーシャルは便利だ。

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?