開発環境
rails 5.2.4
ruby 2.5.5
Windows10
相互フォロー状態のユーザーデータを取得するため、
”current_userがフォローしているユーザー”と、”current_userをフォローしているユーザー”
それぞれのデータを取得しようと考えたのですが、
”current_userがフォローしているユーザーのデータ”のみが取得できない状況です。
アソシエーションの問題かと思い、順番を変える、定義している名前を変えるなど試すも
うまくいかない状況です。
説明が不得手で分かり辛いかもしれないのですが、手掛かりやアドバイスなどご教示いただけますと幸いです。
以下、モデルの状態
user.rb
has_many :following_relationships, foreign_key: "follower_id", class_name: "Relationship", dependent: :destroy has_many :following, through: :following_relationships, source: :following has_many :follower_relationships, foreign_key: "following_id", class_name: "Relationship", dependent: :destroy has_many :followed, through: :follower_relationships, source: :follower def follow(other_user) unless self == other_user self.following_relationships.find_or_create_by(following_id: other_user.id) end end def unfollow(other_user) relationship = self.following_relationships.find_by(following_id: other_user.id) relationship.destroy if relationship end def following?(other_user) follower_relationships.find_by(follower_id: other_user.id) end
relationship.rb
belongs_to :following, class_name: "User" belongs_to :follower, class_name: "User" validates :follower_id, presence: true validates :following_id, presence: true
schema.rb
create_table "relationships", force: :cascade do |t| t.integer "follower_id" t.integer "following_id" t.boolean "good_user", default: false t.boolean "block", default: false t.datetime "created_at", null: false t.datetime "updated_at", null: false t.index ["follower_id", "following_id"], name: "index_relationships_on_follower_id_and_following_id", unique: true t.index ["follower_id"], name: "index_relationships_on_follower_id" t.index ["following_id"], name: "index_relationships_on_following_id" end
上記の状態で、
@user = User.find(:id)で取得したユーザー情報に対して、
@user.followed をコンソール上で行うと問題なくフォローしているユーザーの情報を取得できますが、
@user.followingを行うと、【1】のようなエラーが発生します。
user.rbにてfollowingと命名していることが原因かと思い、has_many :followingをrelationshipに変更すると【2】のようなエラーが発生します。
【1】 [2] pry(main)> @user.following NoMethodError: undefined method `following' for #<User:0x000055f664088850> Did you mean? following? follow follow= follow_ids followed followed= from /home/vagrant/.rbenv/versions/2.5.5/lib/ruby/gems/2.5.0/gems/activemodel-5.2.4/lib/active_model/attribute_methods.rb:430:in `method_missing'
【2】 [4] pry(main)> @user.relationship NoMethodError: undefined method `relationship' for #<User:0x000055f6639f2c70> from /home/vagrant/.rbenv/versions/2.5.5/lib/ruby/gems/2.5.0/gems/activemodel-5.2.4/lib/active_model/attribute_methods.rb:430:in `method_missing'
他、必要情報あれば随時記載させていただければと思います。
大変お手数おかけいたしますが、お力添えいただければと思います。
回答1件
あなたの回答
tips
プレビュー
バッドをするには、ログインかつ
こちらの条件を満たす必要があります。