前提・実現したいこと
Ruby on RailsでSNSのようなシステムを作っています。
新規投稿機能を実装中に以下のエラーメッセージが発生しました。
発生している問題・エラーメッセージ
undefined method `each' for nil:NilClass
該当のソースコード
view
1<div class="row"> 2 <h5 class="two-line-heading">ジャンル検索</h5> 3 <ul class="list-group"> 4 <% @categories.each do |category| %> 5 <li class="list-group-item d-flex justify-content-between align-items-center"> 6 <%= link_to category.name, posts_path(category_id: category.id), class:"link_animation" %> 7 <span class="badge badge-primary badge-pill"><%= category.posts.count %></span> 8 </li> 9 <% end %> 10 </ul> 11 </div>
controller
1class Public::PostsController < ApplicationController 2 3 before_action :authenticate_customer! 4 before_action :ensure_correct_customer, only: [:edit, :update, :destroy] 5 6 def index 7 @posts = Post.page(params[:page]).reverse_order.where.not(customer_id: params[:id]) 8 @categories = Category.all 9 end 10 11 def new 12 @post = Post.new 13 end 14 15 def create 16 @post = Post.new(post_params) 17 @post.customer_id = current_customer.id 18 if @post.save 19 redirect_to posts_path, notice: '投稿しました!' 20 else 21 @posts = Post.page(params[:page]).reverse_order 22 render :index 23 end 24 end 25 26 def edit 27 end 28 29 def update 30 if @post.update(post_params) 31 redirect_to posts_path, notice: '更新しました!' 32 else 33 render :edit 34 end 35 end 36 37 def destroy 38 @post.destroy 39 redirect_to posts_path 40 end 41 42 private 43 44 def post_params 45 params.require(:post).permit(:text, :category) 46 end 47 48 def ensure_correct_customer 49 @post = Post.find(params[:id]) 50 unless @post.customer == current_customer 51 redirect_to posts_path 52 end 53 end 54 55end 56
試したこと
ログを確認したところデータが保存すらされていないことは確認しました。
モデルでアソシエーションは確認しました。
補足情報(FW/ツールのバージョンなど)
rails version 5.2.6
回答1件
あなたの回答
tips
プレビュー
バッドをするには、ログインかつ
こちらの条件を満たす必要があります。
2021/08/13 15:55