Mime not working for paperclip
I'm using Paperclip, when I upload files like PPTX or DOCX, the content_type is showing application/zip which is a incorrect MIME type. Any suggestions for fixing mime types in Rails 3?
您是否将MIME类型添加到/config/initializers/mime_types.rb?
try to use paperclip Model with this validation
validates_attachment_content_type :attachment, :content_type => [ 'application/msword', 'application/vnd.openxmlformats-officedocument.wordprocessingml.document' ]
append other in you initializer if you need .
链接地址: http://www.djcxy.com/p/45490.html上一篇: 更改MIMI类型定义?
下一篇: Mime不能用于回形针