我正在查看此文档,并且在为我的图像创建复选框但与表单相关联的解决方案时遇到了麻烦?
如果您在下面看到,我的图像在表单内循环...
编辑视图
<%= simple_form_for @project, html: { multipart: true } do |f| %>
<% @project.project_images.each do |img| %>
<%= attachment_image_tag(img, :file, :fit, 1000, 430) %>
<% end %>
<%= f.attachment_field :trip_images_files, multiple: true %>
<%= f.button :submit %>
<% end %>
我可以<%= f.check_box :remove_project_images %>
在 .each 循环中添加吗?
<% @project.project_images.each do |img| %>
<%= attachment_image_tag(img, :file, :fit, 1000, 430) %>
<%= f.check_box :remove_project_images_files %>
<% end %>
实际上,在撰写本文时..我得到了undefined method 'remove_project_images_files'
,现在我什至不确定。