0

我已经在我的应用程序中使用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>
4

1 回答 1

0

选择多个图像,您需要添加

:html => { :multipart => true} 

以你的形式,

<%= form_tag(add_multiple_profile_image_path(:id=>@profile.id), :html => { :multipart => true}, :id => "profile_image_form") do %>

同样在您的图像标签中,即 file_tag 您需要添加为::file,multiple:true AS,

 <%= file_field_tag :profile_image, as: :file, multiple: true, :id=>"profile_image", name: 'profile_image' %>

而已。现在选择多个文件并上传多个图像。

于 2013-08-22T09:09:25.867 回答