バリデーションを設定して、【_user_info.html.erb】のフォームに何も入力しなかったら送信できない処理を加えようとしたところ下記の画像のようなエラーメッセージが表示されました。
前提・実現したいこと
バリデーションを正常に作動させたい
発生している問題・エラーメッセージ
該当のソースコード
【books_controller.rb】
rails
1 2 def create 3 @book=Book.new(book_params) 4 @book.user_id = current_user.id 5 if @book.save 6 redirect_to book_path(@book.id) 7 else 8 render :index 9 end 10 end 11 12 def edit 13 @book=Book.find(params[:id]) 14 end 15 16 def index 17 @user = current_user 18 @book=Book.new 19 @books=Book.all 20 end
【book.rb】
rails
1class Book < ApplicationRecord 2 belongs_to :user 3 validates :title , presence: true 4 validates :body , presence: true 5end
【_user_info.html.erb】
rails
1 2<div class="col-md-3" > 3 <div> 4 <h2>User Info</h2> 5 <table> 6 <tbody> 7 <tr> 8 <td><%= image_tag('sample-author1.jpg') %></td> 9 </tr> 10 <tr> 11 <td>name</td> 12 </tr> 13 <tr> 14 </tr> 15 </tbody> 16 </table> 17 <div class="row"> 18 <p class="btn btn-outline-secondary btn-block fas fa-user-cog "> 19 <%= link_to "Edit", edit_user_path(user.id) %> 20 </p> 21 </div> 22 </div> 23 <h2>New book</h2> 24 <%= form_with model: book,local:true do |f|%> 25 <label>Title</label> 26 <div class="field"><%= f.text_field :title %></div> 27 <label>Body</label> 28 <div class="field"><%= f.text_area :body %></div> 29 <%= f.submit'Create Book' %> 30 <% end %> 31</div>
_user_info をrenderしているviewのcodeと、それを呼び出すactionのcodeを載せてください