前提・実現したいこと
Ruby on Railsでアイテムのレビューを共有するSNSを作成しています。
非同期通信を用いたフォロー機能実装のため、部分テンプレート導入時に以下のエラーメッセージが発生しました。
初歩的な内容かもしれませんが、苦戦しております。お力をお貸しいただけると幸いです。
よろしくお願いいたします。
発生している問題・エラーメッセージ
NoMethodError in Items#show Showing .../app/views/users/_info.html.erb where line #5 raised: undefined method `name' for nil:NilClass <tr> <th>名前</th> <th><%= user.name %></th> </tr> <tr> <th>自己紹介</th>
該当のソースコード
controller
1class ItemsController < ApplicationController 2before_action :ensure_current_user,{only: [:edit, :update, :destroy]} 3 4 def show 5 @item = Item.find(params[:id]) 6 @user = @item.user 7 @item_new = Item.new 8 @item_comment = ItemComment.new 9 @item_comments = ItemComment.find_by(params[:id]) 10 end 11
view
1<div class='container'> 2 <div class= 'row'> 3 <div class='col-md-3'> 4 <h2>アカウント情報</h2> 5 <%= render 'users/info', user: @item.user %> 6 <h2 class='mt-3'>新規投稿</h2> 7 <%= render 'form', item: @item_new %> 8 </div> 9・ 10・ 11・
template
1<table class='table'> 2 <tr><%= attachment_image_tag user, :profile_image, :fill, 100, 100, format: "jpeg", fallback: "no-image-icon.jpg" %></tr> 3 <tr> 4 <th>名前</th> 5 <th><%= user.name %></th> 6 </tr> 7 <tr> 8 <th>自己紹介</th> 9 <th><%= user.introduction %></th> 10 </tr> 11 <tr> 12 <th>フォロー中</th> 13 <th><%= link_to user_followings_path(user) do %> 14 <%= user.followings.count %> 15 <% end %> 16 </th> 17 </tr> 18 <tr> 19 <th>フォロワー</th> 20 <th><%= link_to user_followers_path(user) do %> 21 <%= user.followers.count %> 22 <% end %> 23 </th> 24 </tr> 25 </table> 26 <div> 27 <% if current_user == user %> 28 <%= link_to edit_user_path(user),class: "btn btn-outline-secondary btn-block fas fa-user-cog" do %> 29 <% end %> 30 <% elsif current_user.following?(user) %> 31 <%= link_to "フォロー解除", user_relationships_path(user.id), method: :delete, class: "btn btn-primary" %> 32 <% else %> 33 <%= link_to "フォロー", user_relationships_path(user.id), method: :post, class: "btn btn-success" %> 34 <% end %> 35 </div>
試したこと
- 部分テンプレートをViewに差し込みましたが、同様のエラーとなり動作しませんでした
- @itemが正常に渡せていないと思い、@userやcurrent_userに修正しても動作しませんでした
◆追記
modelのコードです
item
1class Item < ApplicationRecord 2 belongs_to :user, optional: true 3 has_many :favorites, dependent: :destroy 4 has_many :item_comments, dependent: :destroy 5 6 attachment :item_image 7 8 def favorited_by?(user) 9 favorites.where(user_id: user.id).exsits? 10 end 11 12 validates :name, presence: true 13 validates :body, presence: true, length:{maximum: 200} 14end
user
1class User < ApplicationRecord 2 # Include default devise modules. Others available are: 3 # :confirmable, :lockable, :timeoutable, :trackable and :omniauthable 4 devise :database_authenticatable, :registerable, 5 :recoverable, :rememberable, :validatable 6 7 has_many :items, dependent: :destroy 8 has_many :favorites, dependent: :destroy 9 has_many :item_comments, dependent: :destroy 10 attachment :profile_image, destroy: false 11 12 has_many :reverse_of_relationships, class_name: "Relationship", foreign_key: "followed_id", dependent: :destroy 13 has_many :followers, through: :reverse_of_relationships, source: :follower 14 has_many :relationships, class_name: "Relationship", foreign_key: "follower_id", dependent: :destroy 15 has_many :followings, through: :relationships, source: :followed 16 17 def follow(user_id) 18 relationships.create(followed_id: user_id) 19 end 20 21 def unfollow(user_id) 22 relationships.find_by(followed_id: user_id).destroy 23 end 24 25 def following?(user) 26 followings.include?(user) 27 end 28 29 validates :name, presence: true, length:{minimum: 2}, uniqueness: true 30 validates :introduction, length:{maximum: 200} 31 32end
回答1件
あなたの回答
tips
プレビュー
バッドをするには、ログインかつ
こちらの条件を満たす必要があります。
2021/12/11 08:01 編集
2021/12/11 09:50
2021/12/13 04:44