1

post.rb

  @allowed_post_types = [
    'type1',
    'type2',
    'type3',
    'type4'
  ]

  #validate post type
  validates :post_type, :presence => true, :inclusion=> { :in => @allowed_post_types }, :if => :valid_post_type?



  def valid_post_type?
    self.post_type != 'type5'
  end

type5でない場合はどうvalidates :post_typeすればコード行を有効にできますか?:post_type

上記を試しましたが、うまくいかないようです

4

1 に答える 1

2

試す:

validates :post_type, 
          :presence => true, 
          :inclusion=> { :in => @allowed_post_types }, 
          :if => lambda { |a| a[:post_type] != "type5" }
于 2012-09-13T17:23:52.800 に答える