前提・実現したいこと
railsで簡易的なSNSアプリを作っておりまして、
フォロー機能の実装をしている途中でエラーが解消できず、困っております。
該当のtweets_controller.rbのindexアクション、
.tweet.html.erbの<span>投稿者</span><%= tweet.user.nickname %>の部分、
どちらも一切変更していないのですが、突然エラーになってしまいました。
以下に情報を記載させていただきますので、解決策をご教示いただけますと幸いです。
エラー画面
###エラー内容
NoMethodError in Tweets#index undefined method `nickname' for nil:NilClass
該当のソースコード
# app/views/tweets/.tweet.html.erb <div class="content_post" > <p><%= tweet.text %></p> <p><%= image_tag tweet.image.variant(resize: '500x500'), class: 'tweet-image' if tweet.image.attached?%></p> <span class="name"> <span>投稿者</span><%= tweet.user.nickname %> </a> </span> <%= link_to '詳細', tweet_path(tweet.id), method: :get %> <% if user_signed_in? && current_user.id == tweet.user_id %> <%= link_to '編集', edit_tweet_path(tweet.id), method: :get %> <%= link_to '削除', "/tweets/#{tweet.id}", method: :delete %> <% end %> </div>
# app/controllers/tweets_controller.rb class TweetsController < ApplicationController before_action :set_tweet, only: [:edit, :show] before_action :move_to_index, except: [:index, :show, :search] def index @tweets = Tweet.includes(:user).order("created_at DESC") end def new @tweet = Tweet.new end def create Tweet.create(tweet_params) end def destroy tweet = Tweet.find(params[:id]) tweet.destroy end def edit end def update tweet = Tweet.find(params[:id]) tweet.update(tweet_params) end def show @comment = Comment.new @comments = @tweet.comments.includes(:user) @like = Like.find_by(user_id: current_user.id, tweet_id: @tweet.id) @likes_count = Like.where(tweet_id: @tweet.id).count #カウントメソッド end def search @tweets = Tweet.search(params[:keyword]) end private def tweet_params params.require(:tweet).permit(:image, :text).merge(user_id: current_user.id) end def set_tweet @tweet = Tweet.find(params[:id]) end def move_to_index unless user_signed_in? redirect_to action: :index end end end
何卒よろしくお願いいたします。
回答1件
あなたの回答
tips
プレビュー
バッドをするには、ログインかつ
こちらの条件を満たす必要があります。
2021/06/20 05:29
2021/06/20 19:58
2021/06/22 02:17