有两个模型product
和photo
,
已经做好了关联
#product.rb
has_many :photos
accepts_netsted_attributes_for :photos
#photo.rb
belongs_to :product
在控制器定义了
....
def new
@product = Product.new
@product.photos.build
.
....
这个@product.photos.build
好像可以上传一张图片,现在我就想上传多张图片。这个应该要怎么做的,请教各位大牛。
@Martin91 回复好快啊。真是非常感谢。这个我试过了。如果我要上传 8 张图片。也就是
8.times { @product.photos.build }
但在form
表单中就出现了 8 个上传的按钮,这样很不美观,想用jQuery
的delegate
的函数动态添加上传的数目。
不知有什么好的思路
#控制器
def new
@product = Product.new
8.times{@product.pictures.build}
@product.videos.build
end
#View
<%= form_for(@product, html: {multipart: true}) do |f| %>
<div class="field">
<%= f.fields_for :pictures do |pic| %>
<%= pic.label :imag %>
<%= pic.file_field :image %>
<% end %>
</div>
<% end %>
app/controllers/products_controller.rb:61:in `block in update'
app/controllers/products_controller.rb:60:in `update'
#controller
def update
@product = Product.find(params[:id])
if @product.update_attributes(params[:product])
redirect_to @product
else
render 'edit'
end
@song940 现在出现了这个错误
ActiveModel::MassAssignmentSecurity::Error in ProductsController#update
Can't mass-assign protected attributes: product