Rails - CanCan -accessible_by

发布于 2024-10-17 17:54:07 字数 83 浏览 3 评论 0原文

谁能向我解释一下 CanCan 的 accessible_by 是如何工作的?它如何知道用户和需要限制的事物之间的关系是什么?

Can anyone explain to me how CanCan's accessible_by works? How does it know what the relationship is between the user and the thing that needs restricting?

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

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

发布评论

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

评论(2

少女的英雄梦 2024-10-24 17:54:07

它根据能力初始值设定项中描述的一组规则检查当前用户,其中包括 CanCan::Ability。当您调用 accessible_by 时,它会检查 Ability 类中指定的规则,并返回用户有权访问的记录。
gem 的 wiki 非常好...这里:定义能力

It checks the current user against a set of rules described in the abilities initializer which includes CanCan::Ability. When you call accessible_by it checks the rules specifed in the Ability class, and returns the records that the user has access to.
The gem's wiki is very good... here: defining abilities

洋洋洒洒 2024-10-24 17:54:07

有一个关于 CanCan 的很棒的railscast(由其创建者制作):

http://railscasts.com /episodes/192-authorization-with-cancan

There is a great railscast about CanCan (made by its creator):

http://railscasts.com/episodes/192-authorization-with-cancan

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