我想使用Jbuilder编码以下JSON对象。怎么做?
"should" : [
{
"term" : { "tag" : "wow" }
},
{
"term" : { "tag" : "elasticsearch" }
}
]
答案 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"}}]}