はじめに
ActiveStorageの画像ファイルを確認画面を挟んでアップロードする方法
前提
Postモデルのimageにアップロードするという前提
post.rb
class Post < ApplicationRecord
has_one_attached :image
How
_post_confirm_form.rb
# 確認画像表示
<% if @post.image.attached? %>
<%= image_tag @post.image %>
<% end %>
# 確認画像を登録する
<%= form.hidden_field :image, value: form.object.image.signed_id %>