Jbuilder:如何编码哈希数组?

时间:2013-12-09 14:07:25

标签: json elasticsearch jbuilder

我想使用Jbuilder编码以下JSON对象。怎么做?

    "should" : [
        {
            "term" : { "tag" : "wow" }
        },
        {
            "term" : { "tag" : "elasticsearch" }
        }
    ]

1 个答案:

答案 0 :(得分:6)

尝试使用child!方法,例如

output = Jbuilder.encode do |json|
    json.should do
        json.child! do
            json.term { json.tag "wow" }
        end
        json.child! do
            json.term { json.tag "elasticsearch" }
        end
    end
end

puts output

将输出:

{"should":[{"term":{"tag":"wow"}},{"term":{"tag":"elasticsearch"}}]}