我正在使用ruby gem paperclip来处理图像附件,我正在将validates_attachment_content_type
添加到我的图书模型中。我只是对语法有疑问。
哪种方法可以做到以上几点?
validates_attachment_content_type :image, :content_type => ["image/jpg", "image/jpeg", "image/png", "image/gif"], message: "Only jpeg, png, and gif images types are allowed"
或
validates_attachment_content_type :image, content_type: /^image\/(png|gif|jpeg|jpg)/, message: "Only jpeg, png, and gif images types are allowed"
对我(初学者)来说,第一个似乎更清洁/更清晰。或者没关系?
答案 0 :(得分:0)
你可以选择任何一个,我更喜欢第一个:
validates_attachment_content_type :image, :content_type => ["image/jpg", "image/jpeg", "image/png", "image/gif"], message: "Only jpeg, png, and gif images types are allowed"
如果您更喜欢使用正则表达式进行验证,请使用第二个。