【解決したい事】
コメントした際にcommentコントローラーのストロングパラメーターエラーを解決したい
param is missing or the value is empty: comment params.require(:comment).permit(:text).merge(user_id: current_user.id, item_id: params[:item_id]) ⇦エラー部分 >> params => <ActionController::Parameters {"authenticity_token"=>"d9wAe5nQDzdxoj6wHNo3/3KRz5w81SYqzJlfoLQTP3v0Jd3645AI71myeX14D2oTa2ebs+2lKzjm4Z120TcPjg==", "controller"=>"comments", "action"=>"create", "item_id"=>"1"} permitted: false>
commentsコントローラー
class CommentsController < ApplicationController def create @comment = Comment.new(comment_params) if @comment.save redirect_to 'items/show' else render 'items/show' end end private def comment_params params.require(:comment).permit(:text).merge(user_id: current_user.id, item_id: params[:item_id]) end end
itemsコントローラー
class ItemsController < ApplicationController before_action :authenticate_user!, except: [:index, :show] before_action :set_item, only: [:show, :edit, :update, :destroy] def index @items = Item.all end def new @item = Item.new end def create @item = Item.new(item_params) if @item.valid? @item.save redirect_to root_path else render :new end end def show @comment = Comment.new @comments = @item.comments end def edit end def update if @item.update(item_params) redirect_to item_path else render :edit end end def destroy if @item.destroy redirect_to root_path end end private def item_params params.require(:item).permit(:name, :info, :category_id, :sales_status_id, :shipping_fee_status_id, :prefecture_id, :scheduled_delivery_id, :price, :image).merge(user_id: current_user.id) end def set_item @item = Item.find(params[:id]) end end
commentモデル アソシエーション
class Comment < ApplicationRecord belongs_to :item belongs_to :user validates :text, presence: true end
itemモデル アソシエーション
class Item < ApplicationRecord extend ActiveHash::Associations::ActiveRecordExtensions has_one :order belongs_to :user has_many :comments
userモデル アソシエーション
has_many :items has_one :order has_one :address has_many :comments
ルーティング
Rails.application.routes.draw do devise_for :users root to: "items#index" resources :items do resources :orders resources :comments end end
show.html
<%= render "devise/shared/header" %> <%# 商品の概要 %> <div class="item-show"> <div class="item-box"> <h2 class="name"> <%= @item.name %> </h2> <div class="item-img-content"> <%= image_tag @item.image, class: "item-box-img" %> <%# 商品が売れている場合は、sold outを表示しましょう %> <% if @item.order.present? %> <div class="sold-out"> <span>Sold Out!!</span> </div> <% end %> <%# //商品が売れている場合は、sold outを表示しましょう %> </div> <div class="item-price-box"> <span class="item-price"> ¥ <%= @item.price %> </span> <span class="item-postage"> <%= @item.shipping_fee_status.name %> </span> </div> <%# ログインしているユーザーと出品しているユーザーが、同一人物の場合と同一人物ではない場合で、処理を分けましょう %> <% if user_signed_in? && @item.order.blank? %> <% if current_user.id == @item.user_id %> <%= link_to "商品の編集", edit_item_path, method: :get, class: "item-red-btn" %> <p class="or-text">or</p> <%= link_to "削除", item_path, method: :delete, class:"item-destroy" %> <% else %> <%# 商品が売れていない場合はこちらを表示しましょう %> <%= link_to "購入画面に進む", item_orders_path(@item) ,class:"item-red-btn"%> <%# //商品が売れていない場合はこちらを表示しましょう %> <% end %> <% end %> <%# //ログインしているユーザーと出品しているユーザーが、同一人物の場合と同一人物ではない場合で、処理を分けましょう %> <div class="item-explain-box"> <span><%= @item.info %></span> </div> <table class="detail-table"> <tbody> <tr> <th class="detail-item">出品者</th> <td class="detail-value"><%= @item.user.nickname %></td> </tr> <tr> <th class="detail-item">カテゴリー</th> <td class="detail-value"><%= @item.category.name %></td> </tr> <tr> <th class="detail-item">商品の状態</th> <td class="detail-value"><%= @item.sales_status.name %></td> </tr> <tr> <th class="detail-item">配送料の負担</th> <td class="detail-value"><%= @item.shipping_fee_status.name %></td> </tr> <tr> <th class="detail-item">発送元の地域</th> <td class="detail-value"><%= @item.prefecture.name %></td> </tr> <tr> <th class="detail-item">発送日の目安</th> <td class="detail-value"><%= @item.scheduled_delivery.name %></td> </tr> </tbody> </table> <div class="option"> <div class="favorite-btn"> <%= image_tag "star.png" ,class:"favorite-star-icon" ,width:"20",height:"20"%> <span>お気に入り 0</span> </div> <div class="report-btn"> <%= image_tag "flag.png" ,class:"report-flag-icon" ,width:"20",height:"20"%> <span>不適切な商品の通報</span> </div> </div> </div> <%# /商品の概要 %> <div class="comment-box"> <% if user_signed_in? %> <%= form_with(model: [@item, @comment], local: true) do |f| %> <form> <textarea class="comment-text"></textarea> <p class="comment-warn"> 相手のことを考え丁寧なコメントを心がけましょう。 <br> 不快な言葉遣いなどは利用制限や退会処分となることがあります。 </p> <button type="submit" class="comment-btn"> <%= image_tag "comment.png" ,class:"comment-flag-icon" ,width:"20",height:"25"%> <span>コメントする<span> </button> </form> <% end %> <% end %> </div> <div class="links"> <a href="#" class="change-item-btn"> < 前の商品 </a> <a href="#" class="change-item-btn"> 後ろの商品 > </a> </div> <%# 詳細ページで表示されている商品のカテゴリー名を表示しましょう %> <a href="#" class="another-item"><%= "商品のカテゴリー名" %>をもっと見る</a> <%# //詳細ページで表示されている商品のカテゴリー名を表示しましょう %> </div> <%= render "devise/shared/footer" %>
【試した事】
スペル間違いがないか確認。
色々と調べましたが、何が原因なのか分からず教えていただけると助かります。
バッドをするには、ログインかつ
こちらの条件を満たす必要があります。