ruby-on-rails - 回形针:发现以下错误:图像的内容与报告的内容不同

标签 ruby-on-rails paperclip ruby-grape

我在 Rails 应用程序中使用回形针,但总是收到以下错误:

I, [2015-06-06T20:10:25.310071 #37358]  INFO -- : Command :: file -b --mime '/tmp/58e53d1324eef6265fdb97b08ed9aadf20150606-37358-ouvtzl.png'
I, [2015-06-06T20:10:25.317478 #37358]  INFO -- : [paperclip] Content Type Spoof: Filename ruby.png (application/octet-stream from Headers, [#<MIME::Type:0x000000053624c8 @friendly={"en"=>"Portable Network Graphics (PNG)"}, @system=nil, @obsolete=false, @registered=true, @use_instead=nil, @signature=false, @content_type="image/png", @raw_media_type="image", @raw_sub_type="png", @simplified="image/png", @i18n_key="image.png", @media_type="image", @sub_type="png", @docs=[], @encoding="base64", @extensions=["png"], @references=["IANA", "[Glenn_Randers-Pehrson]", "{image/png=http://www.iana.org/assignments/media-types/image/png}"], @xrefs={"person"=>["Glenn_Randers-Pehrson"], "template"=>["image/png"]}>] from Extension), content type discovered from file command: image/png. See documentation to allow this combination.
I, [2015-06-06T20:10:25.349416 #37358]  INFO -- : Command :: file -b --mime '/tmp/58e53d1324eef6265fdb97b08ed9aadf20150606-37358-1n574dp.png'
I, [2015-06-06T20:10:25.356667 #37358]  INFO -- : [paperclip] Content Type Spoof: Filename ruby.png (application/octet-stream from Headers, [#<MIME::Type:0x000000053624c8 @friendly={"en"=>"Portable Network Graphics (PNG)"}, @system=nil, @obsolete=false, @registered=true, @use_instead=nil, @signature=false, @content_type="image/png", @raw_media_type="image", @raw_sub_type="png", @simplified="image/png", @i18n_key="image.png", @media_type="image", @sub_type="png", @docs=[], @encoding="base64", @extensions=["png"], @references=["IANA", "[Glenn_Randers-Pehrson]", "{image/png=http://www.iana.org/assignments/media-types/image/png}"], @xrefs={"person"=>["Glenn_Randers-Pehrson"], "template"=>["image/png"]}>] from Extension), content type discovered from file command: image/png. See documentation to allow this combination.

Mongoid::Errors::Validations (
Problem:
  Validation of Mock failed.
Summary:
  The following errors were found: Image has contents that are not what they are reported to be
Resolution:
  Try persisting the document with valid data or remove the validations.):
  app/api/mockaccino/api.rb:23:in `block (2 levels) in <class:API>'

用于测试的 Curl 命令:

curl -X POST -i -F image=@/home/user/workspace/ruby.png -F name=mock http://localhost:3000/api/mock

我正在将图像和名为“name”的参数发送到服务器,并使用此属性和图像创建模型。

型号:

class Mock
  include Mongoid::Document
  include Mongoid::Paperclip

  field :name, type: String

  has_mongoid_attached_file :image

  validates_attachment_presence :image
  validates_attachment_size :image, :less_than => 1.megabytes
  validates_attachment_file_name :image, :matches => [/png\Z/, /jpe?g\Z/]
end

Controller (葡萄):

desc "Create an mock."
      params do
        requires :name, type: String, desc: "Mock name"
        requires :image, :type => Rack::Multipart::UploadedFile, :desc => "Image file."
      end 
      post do
        mock = Mock.create!(
          name: params[:name],
          image: ActionDispatch::Http::UploadedFile.new(params[:image])
        )
      end 

最佳答案

curl -i -X POST -H "Content-Type:multipart/form-data" -F image=@\"./ruby.png\";type=image/png;filename=\"ruby.png\"" http://localhost:3000/api/mock

关于ruby-on-rails - 回形针:发现以下错误:图像的内容与报告的内容不同,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/30686150/

相关文章:

ruby-on-rails - 无法在 Ubuntu 16.04 上运行 Puma upstart 脚本

ruby-on-rails - 如何检查对象是否具有时间值?

ruby-on-rails - 将乘客 5.0.23 native 支持与 Ruby 2.2.4 链接失败

ruby-on-rails - Ajax 文件上传 rails + Rack RawUpload + Paperclip

ruby-on-rails - 如何在 grape-api rails 应用程序上获取远程 ip(请求者)

ruby-on-rails - Ruby - 释放所需 gem 使用的内存?

ruby-on-rails - 回形针多态关联和保存

安装 Homebrew 的 Lion 上的 Imagemagick 问题

ruby - 将 Hashie::Mash 输出解析为 ruby​​ 中的 Json

ruby - 在 RACK 服务器启动时运行某些代码