作者热门文章
- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
我在我的 Rails (3.1.4) 模型中进行了验证,以确保没有人尝试在他们的个人资料图像中上传任何恶意内容,但是当我尝试上传 jpeg 时,验证正在触发。我正在使用 Paperclip gem,但我不确定这是否会产生影响。
user.rb 模型中的验证
validates_attachment_content_type :profile_image, :content_type => ['image/jpeg', 'image/png', 'image/gif'], :message => "Only jpeg, gif and png files are allowed for profile pictures"
最佳答案
您应该添加 'image/jpg'
到内容类型数组,我认为这就是你所缺少的。
关于ruby-on-rails-3 - Rails 对内容类型的验证不适用于 Paperclip,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/10729292/
我是一名优秀的程序员,十分优秀!