3
5

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

背景

とあるユーザーテーブルにて、
hoge1,hoge2,hoge3
というカラムがあったとします。
それぞれの値を取得しようとすると、

@user.hoge1
@user.hoge2
@user.hoge3

みたいに書くことがあると思います。
今回は、この1,2,3のメソッド名を変数に置き換えて、動的に変化させたいという背景がありました。

方法

.sendを使う。
(.sendは動的にメソッドを変化させるメソッドです。)

・例

num = 1
@user.send("hoge#{num}")

# @user.hoge1が実行される

このように書けば、変数numの値が代入されます。
あとは、numの部分をparams[:fuga]とかにすれば、動的に変化できるかと思います。

3
5
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
3
5

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?