作者热门文章
- xml - AJAX/Jquery XML 解析
- 具有多重继承的 XML 模式
- .net - 枚举序列化 Json 与 XML
- XML 简单类型、简单内容、复杂类型、复杂内容
我正在使用 RABL 输出 Sunspot/SOLR 结果集,搜索结果对象由多种模型类型组成。目前在 rabl View 中我有:
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
最佳答案
您可以完全控制“节点”并在“最坏”情况下完全避免此问题:
node :results do
@search.results.map do |r|
if r.is_a?(Product)
partial("product/base", :object => r)
else # render other base class
partial("other/base", :object => r)
end
end
end
这有帮助吗?
关于ruby-on-rails - Rabl 多模合集,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/8328473/
我是一名优秀的程序员,十分优秀!