在我的索引中,我想显示所有的游戏记录。我想将它们分成已经与当前用户关联的和不关联的。
def index
@games = current_user.games
@others = Game.where(game not in @games) # how do i do this?
end
我想知道这种类型的查询是否存在,或者是否有更好的方法来做到这一点。
在我的索引中,我想显示所有的游戏记录。我想将它们分成已经与当前用户关联的和不关联的。
def index
@games = current_user.games
@others = Game.where(game not in @games) # how do i do this?
end
我想知道这种类型的查询是否存在,或者是否有更好的方法来做到这一点。