cancan 按角色过滤记录

发布于 2024-12-21 08:35:34 字数 186 浏览 1 评论 0原文

这里有一个非常简单的问题,但我没有答案...;-)

我只需要按角色浏览我的用户数据库。我不知道如何将我正在寻找的角色与

我尝试过的 cancan 创建的掩码相匹配:

@users= User.role?('manager') 但当然它不会工作。

你有答案吗?谢谢!!

very simple question here but I don't have the answer... ;-)

I just need to browse my user db by roles. I don't know how to match the role I'm looking for with the mask created by cancan

I tried:

@users= User.role?('manager') but of course it doesn't work.

Do you have the answer? Thanks!!

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

暖伴 2024-12-28 08:35:34

好的,我明白了。 Ryan B. 在他出色的 Railscasts 中给出了答案:

使用此范围:

  scope :with_role, lambda { |role| {:conditions => "roles_mask & #{2**ROLES.index(role.to_s)} > 0"} }

并简单地以这种方式应用它:

@admins = User.with_role('admin')

OK, I got it. The answer was given by Ryan B. in his excellent railscasts:

Use this scope:

  scope :with_role, lambda { |role| {:conditions => "roles_mask & #{2**ROLES.index(role.to_s)} > 0"} }

and simply apply it this way:

@admins = User.with_role('admin')
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文