我已经在我的应用程序中使用carrierwave
fog
和实现了单张图片上传amazon S3
。此解决方案将单个图像直接上传到amazon S3
.
现在,问题是,如何扩展它multiupload
?
我知道这个 gem S3 multipart,但更喜欢简单且经过验证的解决方案,我不需要重构我现有的代码......
您能否分享一下最适合您的解决方案?
<div id="post">
<label><%= t('dashboards.index.new_post') %></label>
<div>
<%= form_for(@post, :html => { :multipart => true }) do |f| %>
<%= f.text_area :text, :rows => '3', :placeholder => t('dashboards.index.new_post_placeholder'), :class => "post-text" %><br/>
<%= f.label :image %>
<%= f.file_field :image %> <br/>
# place for multiple uploads
<%= f.label :tag_tokens, 'Tags' %>
<%= f.text_field :tag_tokens %> <br/>
<%= f.submit t('dashboards.index.send_message'), class: 'btn btn-success' %>
</div>
<% end %>
</div>