作者热门文章
- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
我想验证 customer_price >= my_price
.我尝试了以下方法:
class Product < ActiveRecord::Base
attr_accessor :my_price
validates_numericality_of :customer_price, :greater_than_or_equal_to => my_price
...
end
customer_price
是数据库中
Products
表中的一列,而
my_price
不是。)
NameError in ProductsController#index
undefined local variable or method `my_price' for #<Class:0x313b648>
最佳答案
创建自定义验证器:
validate :price_is_less_than_total
# other model methods
private
def price_is_less_than_total
errors.add(:price, "should be less than total") if price > total
end
关于ruby-on-rails - rails 3 : How to validate that A < B where A and B are both model attributes?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/4545102/
我是一名优秀的程序员,十分优秀!