我有一个 current_userhas_many
分组。我有current_user.id
和params[:group_id']
。
我不知道如何查询它。我收到用户 ID 不存在的错误。
我试过了:
@singleGroup = Group.where(:user => {id: current_user.id}).find(params[:group_id])
和
@singleGroup = Group.where(id: current_user.id).find(params[:group_id])
但它们都不起作用。有任何想法吗?