前提・実現したいこと
sellerとuserの両方が共通で使用できるコメント機能を作成しようと思っています。
しかし、現状エラーが出ることはないのですが、DBに保存されない状態が続いています。
発生している問題・エラーメッセージ
[1] pry(#<CommentsController>)> @comment => #<Comment:0x00007f903e2680b0 id: nil, text: "kokokoko", user_id: 3, seller_id: nil, item_id: 2, created_at: nil, updated_at: nil> [2] pry(#<CommentsController>)> Comment.new(comment_params) => #<Comment:0x00007f903cdba320 id: nil, text: "kokokoko", user_id: 3, seller_id: nil, item_id: 2, created_at: nil, updated_at: nil> [3] pry(#<CommentsController>)> @comment.save (0.3ms) BEGIN ↳ (pry):3:in `create' Item Load (0.5ms) SELECT `items`.* FROM `items` WHERE `items`.`id` = 2 LIMIT 1 ↳ (pry):3:in `create' User Load (0.5ms) SELECT `users`.* FROM `users` WHERE `users`.`id` = 3 LIMIT 1 ↳ (pry):3:in `create' (0.5ms) ROLLBACK ↳ (pry):3:in `create' => false
該当のソースコード
commentsコントローラー
class CommentsController < ApplicationController def create @comment = Comment.new(comment_params) binding.pry if @comment.save redirect_to root_path else redirect_to item_path(@comment.item.id) end end private def comment_params params.require(:comment).permit(:text).merge(user_id: current_user&.id, seller_id: current_seller&.id, item_id: params[:item_id]) end end
commentモデル
class Comment < ApplicationRecord belongs_to :item belongs_to :user belongs_to :seller validates :text, presence: true end
items/マイグレーションファイル
create_table :comments do |t| t.text :text t.integer :user_id t.integer :seller_id t.references :item, null: false, foreign_key: true t.timestamps end
items/show.html.erb
<div class="comment-box"> <% if user_signed_in? || seller_signed_in? %> <%= form_with(model: [@item, @comment], local: true) do |form| %> <%= form.text_area :text, placeholder: "コメントする", rows: "2" %> <%= form.submit "SEND" %> <% end %> <% else %> <strong><p>※※※ コメントの投稿には新規登録/ログインが必要です ※※※</p></strong> <% end %> </div>
routes.rb
resources :items, except: :index do collection do get 'search' end resources :orders, only: [:index, :create] resources :favorites, only: [:create, :destroy] resources :comments, only: :create end
itemsコントローラー
class ItemsController < ApplicationController def index # items = Item.order('created_at DESC') items = Item.all if items.length < 8 @items = items.order('created_at DESC') else @items = Item.last(8).reverse end end def new @item = Item.new end def create @item = Item.new(item_params) if @item.save redirect_to root_path else render :new end end def show @item = Item.find(params[:id]) @comment = Comment.new @comments = @item.comments end end
sellerモデル
class Seller < ApplicationRecord # Include default devise modules. Others available are: # :confirmable, :lockable, :timeoutable, :trackable and :omniauthable devise :database_authenticatable, :registerable, :recoverable, :rememberable, :validatable has_one :address_seller has_many :items has_many :comments end
userモデル
class User < ApplicationRecord # Include default devise modules. Others available are: # :confirmable, :lockable, :timeoutable, :trackable and :omniauthable devise :database_authenticatable, :registerable, :recoverable, :rememberable, :validatable has_one :address_user has_many :orders has_many :favorites, dependent: :destroy has_many :comments end
itemモデル
class Item < ApplicationRecord extend ActiveHash::Associations::ActiveRecordExtensions belongs_to :category belongs_to :state belongs_to :shopping_fee belongs_to :shopping_day belongs_to :area belongs_to :seller has_one :order has_one_attached :image has_many :favorites, dependent: :destroy has_many :comments
試したこと
binding.pryをしたところ、上記のエラー欄に書いた通り
[1] pry(#<CommentsController>)> @comment => #<Comment:0x00007f903e2680b0 id: nil, text: "kokokoko", user_id: 3, seller_id: nil, item_id: 2, created_at: nil, updated_at: nil> [2] pry(#<CommentsController>)> Comment.new(comment_params) => #<Comment:0x00007f903cdba320 id: nil, text: "kokokoko", user_id: 3, seller_id: nil, item_id: 2, created_at: nil, updated_at: nil> [3] pry(#<CommentsController>)> @comment.save (0.3ms) BEGIN ↳ (pry):3:in `create' Item Load (0.5ms) SELECT `items`.* FROM `items` WHERE `items`.`id` = 2 LIMIT 1 ↳ (pry):3:in `create' User Load (0.5ms) SELECT `users`.* FROM `users` WHERE `users`.`id` = 3 LIMIT 1 ↳ (pry):3:in `create' (0.5ms) ROLLBACK ↳ (pry):3:in `create' => false
とでてしまいました。
今回はsellerとuser共に使えるような仕様にしたため、seller_idかuser_idはnilになるようにしています。
初歩的なミスかもしれませんが、助言いただけると助かります。
よろしくお願いいたします。
補足情報(FW/ツールのバージョンなど)
ここにより詳細な情報を記載してください。
回答2件
あなたの回答
tips
プレビュー
バッドをするには、ログインかつ
こちらの条件を満たす必要があります。
2021/02/27 07:10