前提・実現したいこと
マイページの名前をユーザー毎に変更して表示させたいです。
Ruby on Rails 6.0.1 で記事投稿サイトを作成しています。
マイページ画面(プロフィール画面のようなもの)でユーザー名を表示する際に以下のエラーが発生しました。
発生している問題・エラーメッセージ
NoMethodError in Users#show
Showing /home/vagrant/environment/media_a/app/views/users/show.html.erb where line #1 raised:
undefined method `name' for nil:NilClass
Extracted source (around line #1):
Rails.root: /home/vagrant/environment/media_a
該当のソースコード
show.html.erbのコード
<h1><%= @user.name %>さんのマイページ</h1> <h3>記事一覧</h3> <div class="mb-3"> <table class="table table-hover"> <thead class="thead-light"> <tr> <th scope="col"><%= t("activerecord.attributes.article.id") %></th> <th scope="col"><%= t("activerecord.attributes.article.title") %></th> <th scope="col"><%= t("activerecord.attributes.article.created_at") %></th> <th scope="col"><%= t("activerecord.attributes.article.updated_at") %></th> <th scope="col">その他</th> </tr </thead> <tbody class="bg-white"> <% @articles.each do |articles| %> <tr> <td><%= articles.id %></td> <td><%= link_to articles.title, article_path %></td> <td><%= articles.created_at %></td> <td><%= articles.updated_at%></td> <div class="e_d_button"> <a><%= render partial: 'articles/e_d_btn', locals: { article: @article } %></a> </div> </tr> <% end %> </tbody> </table> </div>users_controller.rbのコード
class UsersController < ApplicationController
def index
@user = current_user.find(params[:id])
end
def show
@user = User.find_by(id: params[:user_id])
end
def edit
@user = current_user.find(params[:id])
end
def destroy
@user = User.find(params[:id])
@user.destroy
redirect_to user_url(@user)
flash[:notice] = "記事『#{@articles.title}』を削除しました。"
end
end
試したこと
インターネットで調べ、controllerのshowが原因だと考えたので、@user = User.find(params[:id])も試していました。しかし、別の場所でエラーが出たので断念しました。この他に何か良い方法はございますでしょうか?
初投稿ゆえ、分かりにくい場所があるとございますが、ご教授の程よろしくお願いします。
補足情報(FW/ツールのバージョンなど)
ここにより詳細な情報を記載してください。
回答2件
あなたの回答
tips
プレビュー
バッドをするには、ログインかつ
こちらの条件を満たす必要があります。
2019/11/19 05:18