ruby-on-rails – :greater_than_or_equal_to in validates_numericality_of只能在rails 3.1中部分工作

前端之家收集整理的这篇文章主要介绍了ruby-on-rails – :greater_than_or_equal_to in validates_numericality_of只能在rails 3.1中部分工作前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。
我们正在使用以下内容来检查stock_qty(一个整数或一个float.可能为零但不是nil)大于或等于零:
validates_numericality_of :stock_qty,:greater_than_or_equal_to => 0
validates_numericality_of :stock_qty,:less_than_or_equal_to => :in_qty,:if => Proc.new { |part| !part.in_qty.nil? }

:in_qty是部分模型中的列.此验证应允许为正数或0为:stock_qty.问题是,如果:stock_qty被分配为零,则rspec失败.我注意到:less_than_or_equal_to只允许less_than,不允许equal_to.有没有办法在rails 3.1中验证> =或< =?或者我们上面的验证码可能会出错.非常感谢.

解决方法

尝试添加:only_integer =>真如此:
validates_numericality_of :stock_qty,:only_integer => true,:greater_than_or_equal_to => 0

编辑

如果stock_qty为零或零时需要传递,则需要将代码更改为:

validates_numericality_of :stock_qty,:allow_nil => true,:if => Proc.new { |part| !part.in_qty.nil? }
原文链接:https://www.f2er.com/ruby/266874.html

猜你在找的Ruby相关文章