I've been having a heck of a time trying to get multiple image attachements with paperclip working in my Rails 3.x app. I've tried a few different approaches following advice from previous SO posts, but just haven't been able to figure it out. Following are my models:
class Post
include MongoMapper::Document
key :title, String, :required => true
key :description, String, :required => true
many :image_attachments, :as => :attachable
timestamps!
end
class ImageAttachment
include MongoMapper::EmbeddedDocument
include Paperclip::Glue
has_attached_file :image,
:styles => {
:thumb => "100x100",
:large => "600x400"
}
belongs_to :attachable, :polymorphic => true
end
My create action is fairly vanilla (unedited):
def create
@post = Post.new(params[:post])
respond_to do |format|
if @post.save
format.html { redirect_to @post, :notice => 'Post was successfully created.' }
format.json { render :json => @post, :status => :created, :location => @post }
else
format.html { render :action => "new" }
format.json { render :json => @post.errors, :status => :unprocessable_entity }
end
end
end
Based on feedback in other posts, I believed this would be the proper approach in my view (I stripped out the title and description fields for the sake of simplicity), but no file fields are rendered at runtime:
<%= form_for(@post, :html => { :class => 'form-horizontal', :multipart => true }) do |f| %>
<% f.fields_for ImageAttachment.new do |field| %>
<%= field.file_field :image %>
<% end %>
<%= f.submit %>
<% end %>
In place of the field_for code above, I've also tried: f.fields_for :image_attachments do |field|, which also failed to render anything at runtime. Lastly, I tried the following:
<%= f.file_field :image %>
This resulted in the following error on POST:
Cannot serialize an object of class ActionDispatch::Http::UploadedFile into BSON.
As you can see, I haven't even actually gotten to the point of implementing functionality (on the view side) for handling multiple images, but I believe my models are put together correctly to allow this.