15
我有以下數據結構:在另一張地圖上構造地圖?
{:file #<File /foo.bar>, :resolution {:width 1280, :height 1024}}
我想編寫destructures的:resolution
鑰匙插入width
和height
符號的功能。類似於
(defn to-directory-name [{{:keys [width height]}} wallpaper]
(str width "x" height))
這是類似解構的可能嗎?
感謝。
如何從同一地圖的兩個不同的嵌套鍵內解構?例如同一個請求映射中同時使用`{{:keys [ab]}:query-params}`和`{{:keys [cd]}:path-params}` – 2015-01-07 17:09:28