常に表示されるプロフィール欄の編集ボタンから編集ページへリンクしたいのですが、No Method Errorが発生します。
user_idがないということは分かるのですが、どう直せばよいか分かりません。
NoMethodError in Books#index Showing /home/ec2-user/environment/bookers-level2.herokuapp/app/views/books/index.html.erb where line #21 raised: undefined method `user_id' for nil:NilClass Extracted source (around line #21): 19 </table> 20 21 <%= link_to edit_user_path(@user.user_id), class: "btn btn-default" do %> 22 <i class="fa fa-wrench"></i> 23 <% end %> 24 <p>New book</p>
以下必要そうなコードになります。
books/index.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_id, :fill, 250, 250, format: 'jpeg', fallback: "no_image.jpg", size:'250x250' %> <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.user_id), class: "btn btn-default" do %> <i class="fa fa-wrench"></i> <% end %> <p>New book</p> <%= form_for(@book, url: '/users') 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> </tr> </thead> <% @books.each do |book| %> <tbody> <tr> <td></td> <td><%= book.title %></td> <td><%= book.body %></td> </tr> </tbody> <% end %> </table> </div> </div> </div> </div> <%= render 'shared/footer' %>
books_controller.rb
class BooksController < ApplicationController def new end def create book = Book.new(book_params) book.save redirect_to '/books/:id' end def index end def show @book = Book.find(params[:id]) end def edit @book = Book.find(params[:id]) end private def book_params params.require(:book).permit(:title, :body) end end
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 private def user_params params.require(:user).permit(:name, :introduction, :profile_image_id) end end
20191003161330_create_books.rb
class CreateBooks < ActiveRecord::Migration[5.0] def change create_table :books do |t| t.string :title t.text :body t.integer :user_id t.timestamps end end end
その他足りない点がありましたらご指摘お願いします。
回答2件
あなたの回答
tips
プレビュー
バッドをするには、ログインかつ
こちらの条件を満たす必要があります。