gpt4 book ai didi

json - Jbuilder:如何对哈希数组进行编码?

转载 作者:行者123 更新时间:2023-12-02 22:15:08 24 4
gpt4 key购买 nike

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

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

最佳答案

试试 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"}}]}

关于json - Jbuilder:如何对哈希数组进行编码?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/20472627/

24 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com