我正在查看此documentation,而我在创建我的图片复选框时遇到问题却遇到问题,但是与表单相关联?
如果您在下面看到,我的图片会在表单中循环播放...
编辑视图
<%= 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 %>
我可以在.each循环中添加<%= f.check_box :remove_project_images %>
吗?
<% @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'
了,现在我甚至都不确定。