前提・実現したいこと
オリジナルアプリでuser詳細ページの実装を行なっています。
user詳細ページにはそのuserの投稿一覧を表示させたいです。部分テンプレートを使って表示させるとエラーが出てしまします。
userの投稿一覧機能を実装中に以下のエラーメッセージが発生しました。
発生している問題・エラーメッセージ
###NameError in Users#show
Showing /Users/keita/projects/ramen-36399/app/views/users/show.html.erb where line #2 raised:
uninitialized constant User::Raman
<%= @user.nickname + 'さんの投稿一覧' %> <%= render partial: 'ramen/ramen', collection: @user.ramen%> <%= @user.nickname + 'さんがいいねした投稿' %>
該当のソースコード
users_controller.rb
class UsersController < ApplicationController def show @user = User.find(params[:id]) end end
ramen_controller.rb
class RamenController < ApplicationController before_action :authenticate_user!, except: [:index, :show] before_action :set_ramen, only: [:show, :edit, :update,:destroy] before_action :move_to_edit, only: [:edit,:update] def index @ramen = Ramen.all.order("created_at DESC") end def new @ramen = Ramen.new end def create @ramen = Ramen.new(ramen_params) if @ramen.save redirect_to root_path else render :new end end def show @comment = Comment.new @comments = @ramen.comments.includes(:user) end def edit end def update if @ramen.update(ramen_params) redirect_to raman_path else render :edit end end def destroy @ramen.destroy redirect_to root_path end private def ramen_params params.require(:ramen).permit(:store_name,:ramen_name,:star_id, :image,:text).merge(user_id: current_user.id) end def set_ramen @ramen = Ramen.find(params[:id]) end def move_to_edit unless current_user.id == @ramen.user_id redirect_to root_path end end end
ramen.rb
class Ramen < ApplicationRecord belongs_to :user has_many :comments has_one_attached :image extend ActiveHash::Associations::ActiveRecordExtensions belongs_to :star validates :ramen_name,:image,:store_name,:star_id, presence: true validates :star_id, numericality: { other_than: 1 , message: "can't be blank"} end
user.rb
class User < ApplicationRecord has_many :ramen has_many :comments devise :database_authenticatable, :registerable, :recoverable, :rememberable, :validatable validates :nickname, presence: true end
users>show.html.erb
<%= @user.nickname + 'さんの投稿一覧' %> <%= render partial: 'ramen/ramen', collection: @user.ramen%> <%= @user.nickname + 'さんがいいねした投稿' %>
_ramen.html.erb
<ul class='ramen-contents'> <% @ramen.each do |ramen| %> <li class='list'> <%= link_to raman_path(ramen.id) do%> <div class='ramen-img-content'> <%= image_tag ramen.image, class: 'ramen-image' if ramen.image.attached? %> </div> <% end %> <div class = 'ramen-info'> <div class = 'store'> <%= '店名:' + ramen.store_name %> <div class="name"> <%= '商品名:' + ramen.ramen_name %> </div> <div class="star"> <%= 'オススメ度:' + ramen.star.name %> </div> </div> </li> <% end %> </ul>
試したこと
インターネットで検索しましたが解決できませんでした。
エラー画面でparamsの中身を確認したら
@userにramenの情報がない気がします。
回答3件
あなたの回答
tips
プレビュー
バッドをするには、ログインかつ
こちらの条件を満たす必要があります。
2021/09/03 04:07
2021/09/03 05:58
2021/09/03 06:19
2021/09/06 07:49
2021/09/06 08:13