I have a similar setup running with Carrierwave. Here's what I have. I'm using Images as a nested resource for Projects.
Project.rb:
has_many :images, :dependent => :destroy
accepts_nested_attributes_for :images, :allow_destroy => true
Image.rb:
include Rails.application.routes.url_helpers
mount_uploader :image, ImageUploader
belongs_to :project
#one convenient method to pass jq_upload the necessary information
def to_jq_upload
{
"name" => read_attribute(:image),
"size" => image.size,
"url" => image.url,
"thumbnail_url" => image.thumb.url,
"delete_url" => image_path(:id => id),
"delete_type" => "DELETE"
}
end
Images_controller.rb:
def create
@image = Image.new(params[:image])
@image.project_id = params[:project_id]
@project = Project.find(params[:project_id])
@image.position = @project.images.count + 1
if @image.save
render :json => [ @image.to_jq_upload ].to_json
else
render :json => [ @image.to_jq_upload.merge({ :error => "custom_failure" }) ].to_json
end
end
Be aware, this was a *!@^%! to get working.
UPDATE:
projects/_form.html.erb
<div id="fileupload" class="image_add">
<%= form_for Image.new, :html => {:multipart => true} do |f| %>
<div class="fileupload-buttonbar">
<label class="fileinput-button">
<span>Add files...</span>
<%= hidden_field_tag :project_id, @project.id %>
<%= f.file_field :image %>
</label>
<button type="submit" class="start">Start Upload</button>
<button type="reset" class="cancel">Cancel Upload</button>
<button type="button" class="delete">Delete Files</button>
</div>
<% end %>
<div class="fileupload-content">
<div class="dropzone-container">
<div class="dropzone">Drop Image Files Here</div>
</div>
<table class="files"></table>
</div>
</div>