4

我正在使用Rails 3.2,Carrierwave和simple_form。如何使用simple_form在Rails中上傳多個圖像?

目前,一切工作正常與一個圖片上傳用下面的代碼:

<% @product.images.build if @product.images.blank? %> 
<%= f.simple_fields_for :images do |img| %> 
    <% unless @product.images.first.file.blank? %> 
     <div class="control-group"> 
     <label class="controls"><%= image_tag @product.images.first.file %></label> 
     </div> 
     <%= img.input :_destroy, :label => "Remove", :as => :boolean %> 
    <% end %> 
     <%= img.input :file, :as => :file, :label => "Picture", input_html: { class: "input-hundredpercent" } %> 
<% end %> 

然而,我又怎麼能多像這種嵌套形式上傳?

回答