我有一个动态创建的地图数据结构,稍后将被解析为JSON。因此,嵌套级别等是未知的并且取决于数据。
如果某个键有多个值,则它们在序列中表示为映射。
以下是一个例子:
{:key "value"
:anotherKey "anotherValue"
:foo "test"
:others [ {:foo "test2"} {:foo "test3"} ]
:deeper {:nesting {:foo "test4"} }
}
我现在想要搜索密钥:foo
并将"/bar"
附加到该值。
结果应返回修改后的地图:
{:key "value"
:anotherKey "anotherValue"
:foo "test/bar"
:others [ {:foo "test2/bar"} {:foo "test3/bar"} ]
:deeper {:nesting {:foo "test4/bar"} }
}
实现这一目标的简洁方法是什么?
我尝试了一种递归方法,但除了大数据结构的内存问题之外,我还在努力追回我的附加值。
答案 0 :(得分:10)
可能有一些比这更简单的事情:
(clojure.walk/prewalk
(fn [m]
(if (and (map? m) (:foo m))
(update-in m [:foo] #(str % "/bar"))
m))
{:key "value"
:anotherKey "anotherValue"
:foo "test"
:others [{:foo "test2"} {:foo "test3"}]
:deeper {:nesting {:foo "test4"}}})
=>
{:anotherKey "anotherValue",
:key "value",
:deeper {:nesting {:foo "test4/bar"}},
:foo "test/bar",
:others [{:foo "test2/bar"} {:foo "test3/bar"}]}