コントローラーのみに
記載(元のプログラム)
C/controller.rb
if A || B
p @C
end
モデルに記載するパターン
〇〇_controller.rb
if @〇〇.sample
p @C
end
〇〇model/〇〇.rb
def sample
A || B
end
この2パターンは同じ処理になる。
Go to list of users who liked
More than 5 years have passed since last update.
コントローラーのみに
記載(元のプログラム)
if A || B
p @C
end
モデルに記載するパターン
if @〇〇.sample
p @C
end
def sample
A || B
end
この2パターンは同じ処理になる。
Register as a new user and use Qiita more conveniently
Go to list of users who liked