首页 > 解决方案 > 在我的 Pundit 政策中使用范围(Rails 5)

问题描述

如何在我的 Pundit 政策中使用模型中定义的范围?

在我的模型中,我有一个范围:

scope :published, ->{ where.not(published_at: nil )}

在我的权威政策中,我有

class CompanyPolicy < ApplicationPolicy
    def index?
        true
    end
    def create?
        user.present?
    end
    def new?
        true
    end
    def show?
        true
    end
    def update?
      user.present? && user == record.user
    end
end

如何在 Pundit 政策中使用我的范围?我只想在它“已发布”时展示它,像这样,目前不起作用:

class CompanyPolicy < ApplicationPolicy
    def show
       record.published?
    end
end

标签: ruby-on-railsruby-on-rails-5pundit

解决方案


范围是类方法,您不能在实例上调用它们。

您还必须定义一个published?实例方法:

def published?
  published_at.present?
end

如果您询问记录是否存在于给定范围内,则可以使用范围:

User.published.exists?(user.id)

如果范围包括用户 ID,它将返回 true,但我不建议这样做,它需要对数据库进行额外查询才能从已有的用户实例中获取一些信息。


推荐阅读