这是我的代码:
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: 'must be a URL for GIF, JPG, or PNG image.'
}
end
以下是我收到的错误:
提供的正则表达式使用多行锚点(^或$),这可能会带来安全风险。您的意思是使用\ A和\ z,还是忘记添加:multiline =&gt;真的选择?
显然第5行存在错误。
我对Rails非常新。实际上,这是我的第一天。问题是什么,如何解决?谢谢你的时间。
答案 0 :(得分:1)
我遇到了同样的问题。通过书中的示例进行操作。 这是对我有用的代码:
class Product < ActiveRecord::Base
validates :title, :description, :image_url, presence: true
validates :title, uniqueness: true
validates :price, numericality: {greater_than_or_equal_to: 0.01}
validates :image_url, allow_blank: true, format:{
with: %r{\.(gif|jpg|png)\Z}i,
message: 'must be a URL for GIF, JPG or PNG image.'
}
end