バリデーションで空白の場合にエラーメッセージを出したいのですが、render、redirect_to、のどちらが良いでしょうか。
redirect_toの場合 Shutaコントローラ↓
rails
1def create 2 book = Book.new(book_params) 3 if book.save 4 redirect_to shutax_path(book.id) 5 flash[:notice] = "Book was successfully created." 6 else 7 redirect_to index_path 8 end 9end
投稿画面index.html.erb(投稿画面と閲覧画面を同じindexページに載せています)で空白のまま投稿した場合は、またredirect_toでindex.html.erbを表示させるようにしています。しかしredirect_toの仕様上エラーメッセージが表示されないらしいので悩んでおります。
renderの場合 Shutaコントローラ↓
Rails
1def create 2 book = Book.new(book_params) 3 if book.save 4 redirect_to shutax_path(book.id) 5 flash[:notice] = "Book was successfully created." 6 else 7 render "index" 8 end 9end
renderでエラーメッセージを表示させようとすると、index.html.erbに書かれているeachメソッドがエラーを起こしてしまいます。
index.html.erb↓
Rails
1<h1>Books</h1> 2 3<table class="table"> 4 <thead> 5 <tr> 6 <th>Title</th> 7 <th>Body</th> 8 <th colspan="3"></th> 9 </tr> 10 </thead> 11 <tbody> 12 <% @book.each do |book| %> 13 <tr> 14 <td> 15 <%= book.title %> 16 </td> 17 <td> 18 <%= book.body %> 19 </td> 20 <td> 21 <%= link_to "Show", shutax_path(book.id) %> 22 <%= link_to "Edit", edit_shutax_path(book.id) %> 23 <%= link_to "Destroy", destroy_shutax_path(book.id), method: :delete %> 24 </td> 25 </tr> 26 <% end %> 27 </tbody> 28</table> 29 30<h1>New book</h1> 31 32<% if @booker.errors.any? %> 33 <%= @booker.errors.count %> 34 <% @booker.errors.full_messages.each do |message| %> 35 <%= message %> 36 <% end %> 37<% end %> 38 39 40 41<%= form_with model: @book, url:'/books', local:true do |f| %> 42 <h4>Title</h4> 43 <%= f.text_field :title %> 44 <h4>Body</h4> 45 <%= f.text_area :body %> 46 <%= f.submit 'Create Book' %> 47<% end %>
redirect_toを使ってもエラーメッセージを表示することができる方法があるのか、また、NoMethodErrorを解決してrenderを使うのが良いのか、教えてください。よろしくお願いいたします。
バッドをするには、ログインかつ
こちらの条件を満たす必要があります。
2021/12/15 08:35