我正在使用 RABL 输出 Sunspot/SOLR 结果集,搜索结果对象由多种模型类型组成。目前在 rabl 视图中,我有:
object false
child @search.results => :results do
attribute :id, :resource, :upccode
attribute :display_description => :description
code :start_date do |r|
r.utc_start_date.to_i
end
code :end_date do |r|
r.utc_end_date.to_i
end
end
child @search => :stats do
attribute :total
end
以上适用于单个模型;但是,当@search.results 集合中有多个模型类型时,它会失败,因为这两个类没有相同的实例方法。有谁知道如何根据类型拥有不同的属性?最终,最好根据对象的类型有条件地在结果集合中扩展不同的模板。类似于下面的伪代码:
child @search.results => :results do |r|
if r.class == Product
extends "product/base"
else
extends "some other class base"
end
end