我有一个模型,它有两个关系。
模型.rb
has_many :items
has_many :top_items, :class_name => "Item", :limit => 3
所以在像索引这样的页面中渲染json时,我只想获取top_items。但 Rabl 似乎并不知道这一点。它只是弹出我所有的项目而不是 3。下面是我的 rabl 代码
child :top_items do |top_item|
attributes :id, :name
end
有任何想法吗?