我有一个页面,我可以查看产品,并直接从该页面,用户可以添加和删除与该产品相关的多个图像。 我使用的形式回形针上传新文件。
因为多个图像可以被保存为一个产品我创建属于产品模型的图像的模型。 这是不可能使用,因为该协会的默认回形针文件输入。 下面我的解决办法是工作,但我不知道是否有在轨道更好的方式来做到这一点没有一切,我砍死,使其工作的HTML。
class Image < ActiveRecord::Base
belongs_to :product
class Product < ActiveRecord::Base
has_many :images, :dependent => :destroy accepts_nested_attributes_for :images, :allow_destroy => true
show.html.erb
<% @product.images.build %>
<%= form_for(@product, :html => { :multipart => true }) do |f| %>
<input id="image" name="product[images_attributes][<%= @product.images.count %>][photo]" >size="30" type="file" onchange="this.form.submit();" />
<% end %>