快速导航部分,说我有两个模型用户和角色,我想基于某个角色创建用户的索引/列表,我该如何在我的控制器中构建
就像是
#first create the association
@user = role.build
#then build the index based on a Role of role_id = 2
@userrole = @user.where(@user.role_id == 2)
我知道这是伪代码,但这是正确的吗?什么是正确的rails代码?
答案 0 :(得分:0)
roles = Role.where(id: [1, 2])
users = User.where(role_ids: roles.collect(&:ids))
这只是一个例子,因为很明显,如果我们已经知道了id,我们就不需要第一个查询,但如果我们的角色有一个可编辑的列(作为示例),我们可以这样做:
roles = Role.where(editable: true)
users = User.where(role_ids: roles.collect(&:ids))
如果我们想订购这些,我们可以简单地添加:
users = User.where(role_ids: roles.collect(&:ids)).order("created_at DESC")