5
Biểu thức chính quy có xác thực trong RoR 4
Có mã sau: class Product < ActiveRecord::Base validates :title, :description, :image_url, presence: true validates :price, numericality: {greater_than_or_equal_to: 0.01} validates :title, uniqueness: true validates :image_url, allow_blank: true, format: { with: %r{\.(gif|jpg|png)$}i, message: 'URL must point to GIT/JPG/PNG pictures' } end Nó hoạt động, nhưng khi tôi cố gắng kiểm tra nó …