0

所以假设我有以下模型:

class Building < ActiveRecord::Base
  has_many :rooms
  has_many :training_rooms, class_name: 'TrainginRoom', source: rooms
  has_many :computers, through: :training_rooms
end

class Computer < ActiveRecord::Base
  belongs_to :room
end

class Room < ActiveRecord::Base
  belongs_to :building
end

class Office < Room
end

class TrainingRoom < Room
  has_many :computers
end

并且假设我遵循 jsonapi 规范并使用包含的顶级成员在单个 http 调用中呈现每个相关对象。

所以建筑物/表演看起来像这样:

json.data do
  json.id building.id
  json.type building.type
  json.attributes do
    # render the attributes
  end
  json.relationships do
    # render the relationships
  end
end

json.included.do
  json.array! building.rooms.each do |room|
    json.type room.type
    json.id  room.id
    json.attributes do
     # render the attribtues
    end

    json.relationships do |room|
      # render included member's relationships
      # N+1 Be here
    end
  end
end

我无法从包含的成员中急切地加载关系,因为它并不存在于数组的所有成员中。

例如,在控制器中:

@building = Building.eager_load(
  { rooms: :computers }
).find(params[:id])

如果房间关系中有办公室,则不会工作,因为它没有计算机关系。

@building = Building.eager_load(
  :rooms,
  traning_rooms: :computers
).find(params[:id])

也不起作用,因为培训室关系提供了对要侧载的计算机的访问,但不能在渲染代码中直接访问,因此是无用的缓存。

此外,我尝试将默认范围应用于培训室以急切加载计算机关联,但这也没有达到预期的效果。

在这一点上我唯一能想到的是将计算机关系应用于 Room 类,但我并不想这样做,因为只有培训室应该有计算机。

我很想听听任何想法。

4

1 回答 1

0

由于计算机模型中没有training_room_id,因此您必须明确提及foreign_key定义关系的同时。

class TrainingRoom < Room
  has_many :computers, foreign_key: :room_id
end

现在您将能够预先加载记录:

@building = Building.eager_load({ training_rooms: :computers }).where(id: params[:id])

希望能帮助到你 !

于 2018-03-14T06:32:56.137 回答