{}, "content" => [ { "data" => {}, "-6ren">
gpt4 book ai didi

ruby-on-rails - 如何在 Ruby 中访问深层嵌套哈希中的值?

转载 作者:太空宇宙 更新时间:2023-11-03 17:09:11 25 4
gpt4 key购买 nike

有人可以帮我访问这个深度嵌套的散列中的“值”吗:

hash = {
"data" => {},
"content" => [
{
"data" => {},
"content" => [
{
"data" => {},
"marks" => [],
"value" => "est ce que j'arrive à te choper",
"nodeType" => "text"
}
],
"nodeType" => "paragraph"
}
],
"nodeType" => "document"
}

最佳答案

您可以通过 dig 获得值(value)

hash.dig('content', 0, 'content', 0, 'value')
#=> "est ce que j'arrive à te choper"

关于ruby-on-rails - 如何在 Ruby 中访问深层嵌套哈希中的值?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/58621353/

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