我正在使用paperclip在我的应用中上传图片.验证我是:
validates_attachment_content_type :image,:content_type => ['image/jpg','image/jpeg','image/png','image/tiff','image/gif']
在firefox,chorme和IE9中一切都运行良好.但在IE8中,我收到错误 –
“照片图片内容类型无效格式!!!”
任何解决方案或线索都非常感谢.
解决方法
说它需要内容类型的额外图像格式image / pjpeg,即:content_type => [ ‘图像/ PJPEG’]
以下将有所帮助.
http://blog.siyelo.com/tip-of-the-day-mime-types-for-paperclip-ie8