我正在使用cocoon gem
来向产品添加附件。这是我要在新产品表单中呈现茧形嵌套表单字段的部分。
<div id="attachments">
<%= f.label :images, required: true %>
<%= render 'products/attachment_fields', form: attachment %>
<% end %>
<div class="links" id="add_attachment" style="display: inline; float: right;">
<%= link_to_add_association 'add more images', f, :attachments, form_name: 'form' %>
</div>
</div>
这是部分内容:
<div class="nested-fields">
<span class="control-fileupload">
<%= form.input :images,:label => "Choose a file", as: :file, :input_html => { class: "file_input" } %>
</span>
<%= link_to_remove_association "remove", form %>
</div>
以上所有方法都很好。该产品也随附件一起创建。
现在,我正在尝试开发“编辑产品”表单,在该表单中我还可以编辑产品和附件。一切也都可以。我唯一的麻烦是....如何在编辑表单中将每个现有的附件图像添加到关联的茧形嵌套字段中?当前,仅显示字段,并且用户不知道哪个字段包含什么图像,因此他可以进行所需的更改。我尝试了以下操作,图像在每个字段上正确显示,但是每个现有字段都呈现两次:
<div id="attachments">
<%= f.label :images, required: true %>
<%= f.simple_fields_for :attachments do |attachment| %>
<% if @attachments.present? %>
<% @attachments.each do |attached| %>
<%=image_tag attached.images_url(:thumb).to_s %>
<%= render 'retailer_products/attachment_fields', form: attachment %>
<% end %>
<% end %>
<% end %>
<div class="links" id="add_attachment" style="display: inline; float: right;">
<%= link_to_add_association 'add more images', f, :attachments, form_name: 'form' %>
</div>
</div>
答案 0 :(得分:2)
在您的attachment_fields
部分中,添加以下行以显示图像
<% if form.object.persisted? %>
<%= image_tag form.object.images_url(:thumb).to_s %> ## form.object will return your attachment object, from this you can access your image
<% end %>
您的现有字段正在渲染多次,因为您在each
的{{1}}循环中多次渲染了嵌套字段。
将您的attachments
还原为:
div id="attachments"