作者热门文章
- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
我有一个 Rails 3.2 应用程序,其中有一个简单的父/子关系,我需要使用父项中的值来验证子项中的属性。模型看起来像这样:
class RubricItem < ActiveRecord::Base
attr_accessible :max_score, :min_score, :name, :order
has_many :rubric_ranges
end
和
class RubricRange < ActiveRecord::Base
attr_accessible :helper, :range_max, :range_min, :rubric_item_id
validates_presence_of :helper, :range_max, :range_min
validates :range_max, :range_min, :numericality => {:only_integer => true}
validates :range_max, :numericality => { :greater_than => :range_min }
belongs_to :rubric_item
end
我希望能够验证两个不同的事物。首先,对于 rubric_range,我想验证它的 range_min 值 >= 到它的父 rubic.min_score 并且 range_max <= 到它的父 rubric.max_score。
其次,我想验证其他 rubric_ranges 是否具有唯一的最小/最大值。换句话说,不能为同一个值定义两个 rubric_ranges,因此如果一个包含 0-2,则另一个不能在其范围内包含 0、1 或 2。示例:第一个范围是 0-2,如果定义了 2-4 范围,我想在父级范围内引发验证错误。
感谢您的帮助。
最佳答案
您几乎可以像使用 parent 一样使用 parent:
class RubricRange < ActiveRecord::Base
...
validate :has_proper_range
...
def has_proper_range
error.add(:range_min, ' cannot be smaller than RubricItem minimum score') if range_min < rubric_item.min_score
error.add(:range_max, ' cannot be greater than RubricItem maximum score') if range_max > rubric_item.max_score
end
唯一的问题是,如果您想使用 nested_attributes 创建 RubricRange 项目和 RubricItem,因为关联的构建方法不会为新记录设置反向关系。
第二次验证可以通过简单地注意来完成,如果在给定范围内存在具有最小值或最大值的任何其他范围,则验证失败。因此:
validate :do_not_overlap_with_other_ranges
...
def do_not_overlap_with_other_ranges
overlapping_ranges = self.class.where('(range_min >= :min AND range_min <= :max) OR (range_max >= :min AND range_max <= :max)', {:min => range_min, :max => range_max})
overlapping_ranges = overlapping_ranges.where.not(:id => id) unless new_record?
errors.add(:base, 'Range overlapping with another range') if overlapping_ranges.exists?
end
(请随时对上面的查询发表评论,因为我认为应该有更好的写法)。
关于ruby-on-rails - 如何在 Rails 验证中使用父记录的值,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/18698428/
我是一名优秀的程序员,十分优秀!