NoMethodError in Books#show Showing /home/ec2-user/environment/bookers-level2.herokuapp/app/views/books/show.html.erb where line #21 raised: undefined method `id' for nil:NilClass Extracted source (around line #21): 19 </tr> 20 </table> 21 <%= link_to edit_user_path(@user.id), class: "btn btn-default" do %>←エラー箇所 22 <i class="fa fa-wrench"></i> 23 <% end %> 24 <p>New book</p>
このようなエラーが発生しております。
@user.idと@user = User.find(params[:id])で繋げられると思っていたのですがエラーになっています。
idがnillだということは分かるのですが、そこからの解決ができません。
ご教授頂けると嬉しいです。
book/show.html.erb <p>User info</p> <%= attachment_image_tag @user, :profile_image, :fill, 150, 150, format: 'jpeg', fallback: "no_image.jpg", size:'150x150' %> <table class="table"> <tr> <th>name</th> <th><%= current_user.name %></th> </tr> <tr> <th>introduction</th> <th><%= current_user.introduction %></th> </tr> </table> <%= link_to edit_user_path(@user.id), class: "btn btn-default" do %> <i class="fa fa-wrench"></i> <% end %> <p>New book</p> <%= form_for @book do |f| %> <p>Title</p> <%= f.text_field :title %> <p>Opinion</p> <%= f.text_area :body %> <%= f.submit 'Create Book' %> <% end %> </div>
users_controller.rb class UsersController < ApplicationController def index @user = current_user @users = User.all end def show @user = User.find(params[:id]) @book = Book.new @books = @user.books end def edit @user = User.find(params[:id]) end def update @user = User.find(params[:id]) @user.update(user_params) redirect_to user_url(@user.id) end private def user_params params.require(:user).permit(:name, :introduction, :profile_image_id) end end
books_controller.rb class BooksController < ApplicationController before_action :authenticate_user!, only: [:show] def create book = Book.new(book_params) book.user_id = current_user.id book.save! redirect_to user_url(current_user.id) end def index @book = Book.page(params[:book]).reverse_order end def show @book = Book.find(params[:id]) end def edit @book = Book.find(params[:id]) end def update book = Book.find(params[:id]) book.update(book_params) redirect_to user_url(current_user.id) end def destroy @book = Book.find(params[:id]) @book.destroy redirect_to books_url(book.id) end private def user_params params.require(:user).permit(:name, :introduction, :profile_image_id) end def book_params params.require(:book).permit(:title, :body) end end
また、user/show.html.erbにも<%= link_to edit_user_path(@user.id), class: "btn btn-default" do %>の記述がありますが、問題なく機能しています。
コントローラの記述の仕方によるのでしょうか?
【追記】
books_controller.rbのshowに@userを追記したところ以下のようなエラーが発生しました。
エラー文の「Couldn't find User with 'id'=13」の13は投稿した本のidで、投稿したユーザーのidは2です。
表示したいページはidが13の投稿の詳細画面です。
privateにuserのストロングパラメータを追加しても解決できませんでした。
userが誤ってbookのidを取得しようとしているということでしょうか?
ActiveRecord::RecordNotFound in BooksController#show Couldn't find User with 'id'=13 Extracted source (around line #16): 15 def show 16 @user = User.find(params[:id]) 17 @book = Book.find(params[:id]) 18 end
【追記2】
<td><%= link_to book_path(book.id) do %><%= book.title %><% end %></td>でbook/show.html.erbに移動します。user/show.html.erb <%= render 'shared/header' %> <div class="top"> <div class="container"> <div class="row"> <div class="col-lg-3"> <p>User info</p> <%= attachment_image_tag @user, :profile_image, :fill, 150, 150, format: 'jpeg', fallback: "no_image.jpg", size:'150x150' %> <table class="table"> <tr> <th>name</th> <th><%= current_user.name %></th> </tr> <tr> <th>introduction</th> <th><%= current_user.introduction %></th> </tr> </table> <%= link_to edit_user_path(@user.id), class: "btn btn-default" do %> <i class="fa fa-wrench"></i> <% end %> <p>New book</p> <%= form_for @book do |f| %> <p>Title</p> <%= f.text_field :title %> <p>Opinion</p> <%= f.text_area :body %> <%= f.submit 'Create Book' %> <% end %> </div> <div class="col-lg-9"> <p>Books</p> <table class="table table-hover"> <thead> <tr> <th></th> <th>Title</th> <th>Opinion</th> <th></th> </tr> </thead> <% @books.each do |book| %> <tbody> <tr> <td><%= attachment_image_tag @user, :profile_image, :fill, 50, 50, format: 'jpeg', fallback: "no_image.jpg", size:'50x50' %></td> <td><%= link_to book_path(book.id) do %><%= book.title %><% end %></td> <td><%= book.body %></td> </tr> </tbody> <% end %> </table> </div> </div> </div> </div> <%= render 'shared/footer' %>
バッドをするには、ログインかつ
こちらの条件を満たす必要があります。
退会済みユーザー
2019/12/13 13:36
2019/12/14 02:21
退会済みユーザー
2019/12/14 14:16