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ó bằng cách sử dụng "kiểm tra rake", tôi sẽ nhận được thông báo sau:
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?
Nó có nghĩa là gì? Làm thế nào tôi có thể sửa chữa nó?
/\.(gif|jpg|png)$/i
chưa? Có thể%r{}
thêm nó$
vào cuối.