前提・実現したいこと
ruby on railsで投稿した内容を編集したい
投稿に画像は必須ではなく任意にしています
発生している問題・エラーメッセージ
画像がない投稿は普通に編集できるが、画像がある投稿が編集できない
編集するボタンを押してもページ遷移せずデータも更新されていない状態です
該当のソースコード
posts_controller.rb
ruby
1#省略 2 before_action :set_post, only: [:show, :edit, :update, :destroy] 3#省略 4 5 def edit 6 end 7 8 def update 9 if @post.update(post_params) 10 redirect_to root_path(@post.id) 11 else 12 redirect_to edit_post_path(@post.id) 13 end 14 if params[:delete_image] 15 @post.image = nil 16 @post.save! 17 end 18 end 19 20#省略 21 22 private 23 24#省略 25 def post_params 26 params.require(:post).permit(:title, :text, :reference, :genre_id, :image).merge(user_id: current_user.id) 27 end 28 29 def set_post 30 @post = Post.find(params[:id]) 31 end 32#省略
edit.html.erb
ruby
1#省略 2 <% if @post.image.present? %> 3 <div class="form-group"> 4 <%= f.label :image, "参考画像" %> 5 <span class="any">任意</span><br> 6 <%= f.file_field :image, class:"form-control" %> 7 <%= image_tag @post.image, class:"img-fluid" %> 8 <%= form_for([:new, @post]) do |f| %> 9 <%= f.submit value: "画像を削除",name: "delete_image",data: { confirm: "参考画像を削除しますか?"}, class: "btn_send"%> 10 <% end %> 11 </div> 12 <% else %> 13 <div class="form-group"> 14 <%= f.label :image, "参考画像" %> 15 <span class="any">任意</span><br> 16 <%= f.file_field :image, class:"form-control" %> 17 </div> 18 <% end %> 19#省略
post.rb
ruby
1#省略 2has_one_attached :image 3#省略
試したこと
画像を削除するために記述した
posts_controller.rb
ruby
1 if params[:delete_image] 2 @post.image = nil 3 @post.save! 4 end
を削除して試してみたが画像があると編集ボタンを押せない
補足情報(FW/ツールのバージョンなど)
gem "CarrierWave"は使っていません
Active Storageを使って
gem 'mini_magick'
gem 'image_processing', '~> 1.2'
を使っています
回答1件
あなたの回答
tips
プレビュー
バッドをするには、ログインかつ
こちらの条件を満たす必要があります。
2021/12/26 11:03