前提・実現したいこと
推しメン機能を付けたくて中間テーブルを使ってデータを保存したい
発生している問題・エラーメッセージ
中間テーブルにデータの保存ができない
該当のソースコード
members/index
html
1<div class="member-selects"> 2 <div class="select"> 3 <% @members.each do |member| %> 4 <tr> 5 <%= member.name %> 6 <td><%= link_to "推しメンに登録する", add_member_path(member), method: :post %></td> 7 </tr> 8 <% end %> 9 </div> 10</div>
controller
1class MembersController < ApplicationController 2 def index 3 @members = Member.all 4 end 5end
controller
1class FavoritesController < ApplicationController 2 def create 3 @user_id = current_user.id 4 @member_id = Member.find(params[:id]).id 5 @favorite = Favorite.new(member_id: @member_id, user_id: @user_id) 6 if @favorite.save 7 redirect_to member_index_path 8 else 9 redirect_to posts_path 10 end 11 # @favorite = current_user.likes.create(member_id: params[:member_id]) 12 # redirect_to users_path 13 end 14 15 def destroy 16 end 17 18 def edit 19 end 20 21 def update 22 end 23 24end
model
1class Favorite < ApplicationRecord 2 belongs_to :user 3 belongs_to :member 4 validates_uniqueness_of :member_id, :user_id 5end
model
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 :favorites 8 has_many :favorited_member, through: :favorites, source: :member 9 10 has_many :comments, dependent: :destroy 11 12 has_many :likes, dependent: :destroy 13 has_many :liked_comments, through: :likes, source: :comment 14 15 def already_liked?(comment) 16 self.likes.exists?(comment_id: comment.id) 17 end 18 19 def already_favorited?(member) 20 self.likes.exisits?(member_id: member.id) 21 end 22end
model
1class Member < ApplicationRecord 2 has_many :member_comments 3 has_many :comments, through: :member_comments 4 5 has_many :favorites 6 has_many :favorited_users, through: :favorites, source: :user 7end
routes
1Rails.application.routes.draw do 2 devise_for :users 3 4 resource :sessions, only: [:new, :create, :destroy] 5 resources :users 6 resources :members do 7 member do 8 post "add", to: "favorites#create" 9 end 10 end 11 12 # For details on the DSL available within this file, see http://guides.rubyonrails.org/routing.html 13 14 resources :posts, only: [:index] 15 resources :comments, only: [:index, :new, :create, :show, :destory, :edit] do 16 resources :likes, only: [:create, :destroy] 17 end 18 19 20 root to: 'posts#index' 21 22end
試したこと
ターミナルで見るとuser_idがnilだったのでsessionをcurrent_user.idに変えてみたのですが
変えると
User Load (0.4ms) SELECT users
.* FROM users
WHERE users
.id
= 4 ORDER BY users
.id
ASC LIMIT 1
が出てきてmember_idが表示されませんでした。
補足情報(FW/ツールのバージョンなど)
http://labyrinth-of-wisdom.hatenadiary.com/entry/2016/03/07/073000
この記事を参考にしながらコードを書きました。
回答1件
あなたの回答
tips
プレビュー
バッドをするには、ログインかつ
こちらの条件を満たす必要があります。
2019/11/27 13:03
2019/11/27 13:25
2019/11/27 15:07
2019/11/27 21:51
2019/11/28 01:51
2019/11/28 02:21
2019/11/28 02:29