Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
使用回形针 + jquery 文件上传上传文件时无法识别内容类型。
抛出错误“从文件命令发现的内容类型:CDF V2 文档,没有摘要信息。请参阅文档以允许这种组合”
无法上传相同的。
我们可以通过在 rails 的初始化程序中添加以下文件来解决此问题 -
# config/initializers/paperclip.rb
Paperclip.options[:content_type_mappings] = { :xls => "CDF V2 Document, No summary info" }
这解决了我的问题,希望这对你也有帮助。
谢谢你。