22
19

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 5 years have passed since last update.

Railsの.erbで条件によってclassを変更

Last updated at Posted at 2018-03-25

条件によって表示するcssを変更しようとした時にハマりどころがあったので備忘録がてらメモ。

最初(if文の挙動を確認)

コード

<% if user.id == params[:id] %>
  hoge
<% else %>
  hogehoge
<% end %>

出力

hogehoge

※ちなみに

<%= user.id %> 
<%= params[:id]%>

上記の出力は同じ数字。

この条件式の書き方がどうも良くないらしい。

#対処 : find_byメソッドを使う

コード

<% if user.id == User.find_by(id: params[:id]).id %>
  hoge
<% else %>
  hogehoge
<% end %>

出力
hoge

#class分岐に応用
class分岐のためには以下のように書いた。

<div class="<%= "fizzbuzz" if user.id == User.find_by(id: params[:id]).id %>">

なんとかこれで動作することは確認できました。

22
19
2

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
22
19

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?