gpt4 book ai didi

dictionary - 如何检查 key 是否存在于 Elixir 的深度嵌套 Map 中

转载 作者:行者123 更新时间:2023-12-04 01:19:16 25 4
gpt4 key购买 nike

我有一个 map 对象,我需要检查它是否包含给定的键。我试过如下,但它总是返回false。还有如何在 map 回复消息中提取值(value),

map=%{
Envelope: %{
Body: %{
replyMessage: %{
cc: %{
"amount" => "100.00",
"reasonCode" => "100",
},
decision: "ACCEPT",
invalidField: nil,
purchaseTotals: %{"currency" => "CAD"},
reasonCode: "100",

}
}
}
}
Map.has_key?(map, %{Envelope: %{Body: %{replyMessage: replyMessage}}})= false

最佳答案

您有两种可能: Kernel.match?/2 检查 key 是否存在和/或 Kernel.get_in/2 深度找回值(value)。

iex|1 ▶ match?(%{Envelope: %{Body: %{replyMessage: _}}}, map)      
#⇒ true

iex|2 ▶ get_in(map, [:Envelope, :Body, :replyMessage])
#⇒ %{
# cc: %{"amount" => "100.00", "reasonCode" => "100"},
# decision: "ACCEPT",
# invalidField: nil,
# purchaseTotals: %{"currency" => "CAD"},
# reasonCode: "100"
# }
小心 Kernel.get_in/2会返回 nil如果 key 存在,但具有 nil值,以及如果键不存在。

Map.has_key?/2 无论如何都不是递归的,它与 map 的键一起工作,作为参数传递;也就是说,只有第一级。

旁注:基于 Map.has_key/2,人们可能很容易自己构建一个递归解决方案。
defmodule Deep do
@spec has_key?(map :: map(), keys :: [atom()]) :: boolean()
def has_key?(map, _) when not is_map(map), do: false
def has_key?(map, [key]), do: Map.has_key?(map, key)
def has_key?(map, [key|tail]),
do: Map.has_key?(map, key) and has_key?(map[key], tail)
end

Deep.has_key?(map, [:Envelope, :Body, :replyMessage])
#⇒ true

关于dictionary - 如何检查 key 是否存在于 Elixir 的深度嵌套 Map 中,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/62844614/

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