Last active
December 12, 2015 01:58
-
-
Save ninetwentyfour/4695134 to your computer and use it in GitHub Desktop.
Simple Multi-File Uploads With Paperclip
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
params[:document][:filearrays].each do |file| | |
@document = Document.new(:document => file) | |
@document.save | |
end |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<%= form_for Document.new, :url => documents_path, :remote => true, :html => {:multipart => true} do |f| %> | |
<%= f.file_field :filearrays, :multiple =>:true %> | |
<%= f.submit "Submit" %> | |
<% end %> |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment