您最多选择25个主题 主题必须以字母或数字开头,可以包含连字符 (-),并且长度不得超过35个字符
 
 
 
 
 

10 行
393 B

  1. class Product < ApplicationRecord
  2. validates :title, :description, :image_url, :price, presence: true
  3. validates :price, numericality: {greater_than_or_equal_to: 0.01}
  4. validates :title, uniqueness: true, length: { minimum: 5, maximum: 30 }
  5. validates :image_url, allow_blank: true, format: {
  6. with: %r{\.(gif|jpg|png)\Z}i,
  7. message: 'must be URL for GIF, JPG or PNG image.'
  8. }
  9. end