product.rb
来自「ruby on rails web敏捷开发之路第二版 源代码」· RB 代码 · 共 36 行
RB
36 行
#---# 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.#---# A Product is something we can sell (but only if# we're past its +date_available+ attribute).class Product < ActiveRecord::Base validates_presence_of :title validates_presence_of :description validates_presence_of :image_url validates_uniqueness_of :title validates_numericality_of :price validates_format_of :image_url, :with => %r{http:.+\.(gif|jpg|png)$}i, :message => "must be a URL for a GIF, JPG, or PNG image" # Return a list of products we can sell (which means they have to be # available). Show the most recently available first. def self.salable_items find(:all, :conditions => "date_available <= now()", :order => "date_available desc") end protected # Validate that the product price is a positive Float. def validate #:doc: errors.add(:price, "should be positive") unless price.nil? || price >= 0.01 endend
⌨️ 快捷键说明
复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?