Job
模型具有整数job_price
字段:
class CreateJobs < ActiveRecord::Migration
def self.up
create_table :jobs do |t|
...
t.integer "job_price"
...
end
end
...
end
如果用户在job_price
字段中键入字符串,我想显示错误消息,因此我添加了以下验证:
class Job < ActiveRecord::Base
validates_format_of :job_price, :with => /\A\d{0,10}\z/,
:message => "^Job Price must be valid"
...
end
但是,即使我输入字符串,似乎验证也会通过。
任何想法为什么?
注意
我必须在这里添加:value => @job.job_price_before_type_cast
:
f.text_field(:job_price, :maxlength => 10,
:value => @job.job_price_before_type_cast)
因为,否则,如果我正在输入abc5
,然后提交表单,则Rails会将其转换为5
(我猜因为job_price
被定义为整数)
答案 0 :(得分:6)
你可以确保它是一个整数并且在一个范围内:
validates_numericality_of :myfield, :only_integer => true
validates_inclusion_of :myfield, :in => 0..9999999999
答案 1 :(得分:3)
Rails 3方式将是:
validates :myfield, :numericality => { only_integer: true }
validates :myfield, :inclusion => { :in => 1..10000 }
答案 2 :(得分:2)