前提・実現したいこと
投稿アプリを作っています。投稿内容は画像、テキスト、タイトルです。
新規投稿をする際にバリデーションが機能していないみたいで、無記入のまま投稿ボタンを押しても、条件分岐のcreateが成功した方へ行っていまいます(下にイメージ図を載せておきます)。
どうすれば、バリデーションがかかり、render :new の処理にできますでしょうか。
【無記入で投稿ボタンを押しても、redirect_to root_pathに行ってしまう】
該当のソースコード
rail
1【postsコントローラー】 2 3class PostsController < ApplicationController 4 5 def new 6 @post = Post.new 7 end 8 9 def create 10 if Post.create(post_params) 11 redirect_to root_path 12 else 13 render :new 14 end 15 end 16 17 private 18 19 def post_params 20 params.require(:post).permit(:image, :text, :title).merge(user_id: current_user.id) 21 end 22 23end 24
rail
1【投稿画面】 2 3<div class="contents row"> 4 <div class="container"> 5 <h3>投稿する</h3> 6 <%= form_with(model: @post, local: true) do |form| %> 7 <% if @post.errors.any? %> 8 <%=render 'shared/error_messages', model: form.object %> 9 <%end%> 10 <%= form.file_field :image, placeholder: "画像のURL" %> 11 <%= form.text_area :title, placeholder: "題名 (50文字以内", rows: "1" %> 12 <%= form.text_area :text, placeholder: "内容(50文字以内)", rows: "5" %> 13 <%= form.submit "SEND" %> 14 <% end %> 15 </div> 16</div>
rail
1【post.rb】 2 3class Post < ApplicationRecord 4 belongs_to :user 5 has_many :comments 6 has_many :likes, dependent: :destroy 7 has_many :liked_users, through: :likes, source: :user 8 has_one_attached :image 9 10 with_options presence: true do 11 validates :text, unless: :was_attached? 12 validates :title 13 validates :image 14 end 15 16 validates :text, length: { minimum: 1,maximum: 140} 17 validates :title, length: { minimum: 1,maximum:20} 18 19 def was_attached? 20 self.image.attached? 21 end 22 23end
補足情報(FW/ツールのバージョンなど)
Rails 6.0.3.4
回答1件
あなたの回答
tips
プレビュー
バッドをするには、ログインかつ
こちらの条件を満たす必要があります。
2020/11/23 06:14