投稿したbookに対してユーザーがお気に入りを行えるようにfavoritesテーブルを作成し、アソシエーションを行うがbookコントロールで投稿したbookを表示させようとしたらインスタンス変数が呼べず、AssociationNotFoundErrorとなる。
参考記事
https://qiita.com/yusuko/items/d73778ecffce4e541e98
https://qiita.com/s_rkamot/items/b1d4d64335f33399e713
user.rb
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 :books, through: :favorites 9end
book.rb
1class Book < ApplicationRecord 2 validates :title, :kill, :author, :image, presence: true 3 mount_uploader :image, ImageUploader 4 5 has_many :favorites 6 has_many :users, through: :favorites 7end
favorite.rb
1class Favorite < ApplicationRecord 2 belongs_to :user 3 belongs_to :book 4end
books_controller
1 2 def show_book 3 @book = Book.includes(:user) 4 end 5
回答1件
あなたの回答
tips
プレビュー
バッドをするには、ログインかつ
こちらの条件を満たす必要があります。
2019/12/28 03:18