shutaコントローラのcreateアクション、eachメソッドでエラーが起きました。
createアクション内で、インスタンス変数@booksは定義しています。
何が原因なのでしょうか。
shutaコントローラ↓
rails
1class ShutaController < ApplicationController 2 def new 3 @books = Book.new 4 5 end 6 7 8 def index 9 @books = Book.all 10 @book = Book.new 11 12 end 13 14 def show 15 @book = Book.find(params[:id]) 16 end 17 18 def create 19 @books = Book.new(book_params) 20 if @books.save 21 redirect_to shutax_path(book.id) 22 flash[:notice] = "Book was successfully created" 23 else 24 render :index 25 end 26 end 27 28 def edit 29 @book = Book.find(params[:id]) 30 end 31 32 def update 33 book = Book.find(params[:id]) 34 book.update(book_params) 35 redirect_to shutax_path(book.id) 36 flash[:notice] = "Book was successfully updated" 37 end 38 39 def destroy 40 book = Book.find(params[:id]) 41 book.destroy 42 redirect_to index_path 43 end 44 45 46 47 private 48 49 def book_params 50 params.permit(:title, :body) 51 end 52 53end 54
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 <% @books.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 @book.errors.any? %> 33 <%= @book.errors.count %> 34 <% @book.errors.full_messages.each do |message| %> 35 <%= message %> 36 <% end %> 37<% end %> 38 39 40<%= form_with model: @book, url:'/books', local:true do |f| %> 41 <h4>Title</h4> 42 <%= f.text_field :title %> 43 <h4>Body</h4> 44 <%= f.text_area :body %> 45 <%= f.submit 'Create Book' %> 46<% end %>
ご回答よろしくお願いいたします。
バッドをするには、ログインかつ
こちらの条件を満たす必要があります。
2021/12/14 23:45
2021/12/14 23:49
2021/12/14 23:52 編集
2021/12/15 00:24
2021/12/15 00:36
2021/12/15 00:37
2021/12/15 00:58