带有嵌套资源和 :find_by 的 CanCan gem

发布于 2024-12-10 12:54:08 字数 410 浏览 0 评论 0原文

我使用 CanCan load_and_authorize_resource 辅助方法来获取资源和生成授权,但我有一个像这样的嵌套资源

load_and_authorize_resource :company
load_and_authorize_resource :accountings, :through => :company, :class => 'Departments::Accounting'

但我需要 @accountings 由另一个属性而不是 Departmets::Accounting id 找到,并为该属性提供一个值,例如

@accountings = @company.find_by_period_id(@period.id)

Im using CanCan load_and_authorize_resource helper method for fetching resources and generating authorization, but I have a nested resource like this

load_and_authorize_resource :company
load_and_authorize_resource :accountings, :through => :company, :class => 'Departments::Accounting'

But I need
@accountings be found by another attribute rather that the Departmets::Accounting id and give a value to that attribute, for example

@accountings = @company.find_by_period_id(@period.id)

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

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

发布评论

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

评论(1

情独悲 2024-12-17 12:54:08

您可以使用两个额外选项来完成此操作:

load_and_authorize_resource :accountings,
    :through => :company, :class => 'Departments::Accounting',
    :find_by => :attr, # :period_id in your example
    :id_param => :something # this searches the params hash for
                            # params[:something], and sends that
                            # value to .find_by_attr

检查 load_and_authorize_resource 的代码 这里

You can do it with two extra options:

load_and_authorize_resource :accountings,
    :through => :company, :class => 'Departments::Accounting',
    :find_by => :attr, # :period_id in your example
    :id_param => :something # this searches the params hash for
                            # params[:something], and sends that
                            # value to .find_by_attr

Check the code for load_and_authorize_resource here.

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