다음 코드가 있습니다.
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
작동하지만 "rake test"를 사용하여 테스트하려고하면 다음 메시지가 표시됩니다.
rake aborted!
The provided regular expression is using multiline anchors (^ or $), which may present a security risk. Did you mean to use \A and \z, or forgot to add the :multiline => true option?
무슨 뜻이에요? 어떻게 고칠 수 있습니까?
/\.(gif|jpg|png)$/i
? 아마도 마지막에%r{}
자신의 것을 추가 할 수도$
있습니다.