LoginSignup
20
18

More than 5 years have passed since last update.

RailsのPartialでローカル変数が定義されているかどうかを判別する

Last updated at Posted at 2012-12-26

Rails 4 以降

defined? を使います。

<% if defined?(local_var) do %>

Rails 3

local_assigns ローカル変数を使います。

<% if local_assigns[:local_var].present? do %>
20
18
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
20
18