这样写,提示 User.where 的 id 找不到 debug1 = Follow.select('follow_id').where(["id=?", @user.id])
@fans_records = User.where("id not in(?)",debug1)
这样通过。但是我想把 User.id 放在 Follow.follow_id 里比较。 debug1 = Follow.select('id,follow_id').where(["id=?", @user.id])
@fans_records = User.where("id not in(?)",debug1)