このドキュメントを見ていますが、画像にチェックボックスを作成する際に解決策を思いつくのに問題がありますが、フォームに関連付けられていますか?
以下を見ると、私の画像はフォーム内でループしています...
ビューを編集
<%= 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'
、今はまったくわかりません。