ruby on rails 第二天 表单简单验证

下午琢磨了一下,现在把页面验证给记录下来,比较简单的。
打开app目录下models目录的相应文件,这里是student.rb

在第一行的base下面添加如下代码
    validates_presence_of :name,:age,:background,:birthday
    validates_numericality_of :age,:message => "this is value not number!"
    validates_uniqueness_of :name, :message => "is can't be repeated!"

今天有事情,暂时先这样。
补上昨天的。
    validates_presence_of 这个的意思验证是否为空,要验证的控件 :name
    validates_numericality_of 这个是验证变量是否为数字。message=》“你在页面要提示的内容”
    validates_uniqueness_of  验证控件值在数据库是否唯一。

validates_presence_of :title , :description , :image_url #必填验证
validates_length_of :title , :minimum => 10 , :message => "必须大于10个字"
validates_numericality_of :price #必须是数字
validate :price_must_be_at_least_a_cent #方法验证
validates_uniqueness_of :title #验证title字段的值数据库中是否存在
validates_format_of :image_url , :with => %r{\.(gif|jpg|png)$}i,
                     :message => 'must be a URL for gif,jpg or png image'
#验证图片地址的合法性,检查以.gif, .jpg, .png结束的
protected
   def price_must_be_at_least_a_cent #方法验证价格
     errors.add( :price , "should be at least 0.01" ) if pirce. nil ? || price < 0 . 01

   end

你可能感兴趣的:(Ruby,Rails)