2016-05-04 7 views

答えて

1

グッド
the_user = User.find(1) 
interest_ids = the_user.interest_ids 
users_with_common_interests = User.includes(:interests) 
    .where(interests: { id: interest_ids }) 
    .where.not(id: the_user) 
+0

を、これは私の共通の利益をユーザーに与え、私は与えられたユーザIDの共通の利益のリストを取得するには、この方法を試してみましょう。 –

関連する問題