product.rb

来自「ruby on rails web敏捷开发之路第二版 源代码」· RB 代码 · 共 24 行

RB
24
字号
#---# Excerpted from "Agile Web Development with Rails, 2nd Ed."# We make no guarantees that this code is fit for any purpose. # Visit http://www.pragmaticprogrammer.com/titles/rails2 for more book information.#---class Product < ActiveRecord::Base  validates_presence_of :title, :description, :image_url  validates_numericality_of :price,                            :message => "should be a number like 12.34"  validates_uniqueness_of :title  validates_format_of :image_url,                       :with    => %r{\.(gif|jpg|png)$}i,                      :message => "must be a URL for a GIF, JPG, or PNG image"  validates_length_of :title, :minimum => 10                          protected    def validate    errors.add(:price, "should be at least 0.01") if price.nil? ||  price < 0.01  endend

⌨️ 快捷键说明

复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?