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?

バリデーションの真偽判定のメソッドを使用する条件分岐の注意点

Posted at

初めに

疑問に思ったことや上手くいかなかったことのアウトプットをしています。
自分なりの理解でアウトプットしていきます。初学者なので誤りもあると思います。
その際はご指摘いただけると幸いです。

発端

モデルで以下のように定義

with_options if: :exampled? do
    validates :aa, aa_format: true, presence: true, length: { maximum: 255 }
    validates :bb_at, presence: true
    validates :cc_id, presence: true
  end

exampleコントローラで以下のように条件分岐

if @ddd.valid?
    #メソッド
elsif @ddd.cscs?
    #メソッド
end

この時、@ddd.valid?でfalseが出るとelsifの方に行かずメソッドが止まります。

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?