ユーザーはスニペットにタグを追加できます。
class Snippet < ActiveRecord::Base
# Relationships
has_many :taggings
has_many :tags, :through => :taggings
belongs_to :closing_reason
end
タグの数を検証したい:少なくとも1、最大6。これを行うにはどうすればよいですか?ありがとう。
カスタム検証 をいつでも作成できます。
何かのようなもの
validate :validate_tags
def validate_tags
errors.add(:tags, "too much") if tags.size > 5
end
@ SooDesuNe on this SO post により、より優れたソリューションが提供されています。
validates :tags, length: { minimum: 1, maximum: 6 }
.reject(&:marked_for_destruction?).length
を使用して検証できると思います。
これはどう?
class User < ActiveRecord::Base
has_many :groups do
def length
reject(&:marked_for_destruction?).length
end
end
accepts_nested_attributes_for :groups, allow_destroy: true
validates :groups, length: { maximum: 5 }
end
またはこれ。
class User < ActiveRecord::Base
has_many :groups
accepts_nested_attributes_for :groups, allow_destroy: true
GROUPS_MAX_LENGTH = 5
validate legth_of_groups
def length_of_groups
groups_length = 0
if groups.exists?
groups_length = groups.reject(&:marked_for_destruction?).length
end
errors.add(:groups, 'too many') if groups_length > GROUPS_MAX_LENGTH
end
end
その後、命令することができます。
@user.assign_attributes(params[:user])
@user.valid?
読んでくれてありがとう。
参照:
http://homeonrails.com/2012/10/validating-nested-associations-in-Rails/http://qiita.com/asukiaaa/items/4797ce44c3ba7bd7a51f