【发布时间】:2011-09-08 18:16:57
【问题描述】:
我在使用 rails 和 carrierwave 将图像上传到 mongodb 时遇到问题。这是我收到的错误消息
Cannot serialize an object of class ActionDispatch::Http::UploadedFile into BSON.
我的模型是这样的
class Offer
include Mongoid::Document
include Mongoid::Timestamps
field :name, :type => String
field :desc, :type => String
field :expiry, :type => Date
has_one :image, as: :viewable
embeds_many :locations, as: :locatable
end
和
class Image
include Mongoid::Document
include Mongoid::Timestamps
field :name, :type => String
field :extension, :type => String
mount_uploader :image, ImageUploader
belongs_to :viewable, polymorphic: true
end
视图是
<%= nested_form_for @offer, :html => {:method => :post, :id => "offerNew", :class => "uniForm", :multipart => true} do |f| %>
<fieldset class="inlineLabels" id="setBiz">
<div class="ctrlHolder">
<%= f.label :name, mark_mandatory("Offer Name") %>
<%= f.text_field :name, :class => "textInput large" %>
<p class="formHint">Name of the offer to be displayed in ads ex:5% offer on Panasonic vierra LCD </p>
</div>
<div class="ctrlHolder">
<%= f.label :image, "Image" %>
<%= f.file_field :image %>
<p class="formHint">Upload image </p>
</div>
</fieldset>
<% end %>
这些是发送到控制器的参数
"utf8"=>"✓",
"authenticity_token"=>"8GhVGBg2zTI9FQwZmnKiZtBmgM5DiaQmPZaUIhNeF6I=",
"offer"=>{"catid"=>"4e590231b356f8015f000030",
"name"=>"aaaaaaaaaaaaaaaaaaaa",
"expiry"=>"22/09/2011",
"image"=>#<ActionDispatch::Http::UploadedFile:0xb412e30 @original_filename="51MF4101AA000.jpg",
@content_type="image/jpeg",
@headers="Content-Disposition: form-data; name=\"offer[image]\"; filename=\"51MF4101AA000.jpg\"\r\nContent-Type: image/jpeg\r\n",
@tempfile=#<File:/tmp/RackMultipart20110908-2893-1a8yqe2>>,
"loc"=>[80.22167450000006,
13.0454044],
}}
但它在我手动创建这样的图像文档的另一种形式下工作正常
params[:images].each do |img|
image = Image.new(:extension => img.content_type.split('/')[1])
image.image = img
@business.images << image
end
我认为carrierwave 会处理这个文件,但我不确定遗漏了什么?
【问题讨论】:
标签: ruby-on-rails ruby mongoid carrierwave