我正在尝试定义用户基于关联模型上的列访问某些内容的能力(所以类似于can :read, Step, 'steppable' => {published: true}),问题是它是一个多态关联,因此找不到可步进表,因为它不存在。

我有步骤,每个步骤都有一个步骤(演讲,测验或其他操作)。我需要一个有效的记录查询,它将起作用。我试过了:
Step.includes(:steppable).where('steppable' => {published: true})

Step.joins(:steppable).where('steppable' => {published: true})
但是两者都导致ActiveRecord::EagerLoadPolymorphicError: Can not eagerly load the polymorphic association :steppable
模型看起来像这样:

class Step < ActiveRecord::Base
   ...
   belongs_to :steppable, polymorphic: true, dependent: :destroy
   ...
end


class Lecture
   ...
   has_one :step, as: :steppable, dependent: :destroy
   ...
end

注意:我想对相关模型不了解,为了使其能够使用CanCan来获取记录,必须使用数据库列来完成(请参阅github.com/ryanb/cancan/wiki/defining-abilities)

最佳答案

您应该可以执行以下操作:

can :read, Step, steppable_type: 'Lecture', steppable_id: Lecture.published.pluck(:id)
can :read, Step, steppable_type: 'OtherThing', steppable_id: OtherThing.published.pluck(:id)

您必须为每个Steppable类都执行此操作,但是它绕过了急于加载多态关联的问题。要干一点:
[Lecture, OtherThing].each do |klass|
  can :read, Step, steppable_type: klass.to_s, steppable_id: klass.published.pluck(:id)
end

在这种情况下,只要每个steppable类的作用域为published,即使将steppable的定义不同,您也只需将任何published类添加到该数组中即可。

关于ruby-on-rails - CanCan和多态关联(急切加载错误),我们在Stack Overflow上找到一个类似的问题:https://stackoverflow.com/questions/18896842/

10-11 23:14