Clojurescript交换!和多个关联

时间:2014-09-30 01:12:35

标签: clojure clojurescript om

尝试让代码更好看。

我在Clojurescript中有以下内容:

(swap! app-state assoc-in [:lastresults] [])
(swap! app-state assoc-in [:error] false)
(swap! app-state assoc-in [:computing] true)

有时更多。关于如何在更清晰的多任务中改变这一点的任何想法。

我正在寻找类似的东西:

 (swap! app-state assoc-in
      [:lastresults] []
      [:error] false
      [:computing] true)

1 个答案:

答案 0 :(得分:7)

您只需要一个级别assoc-in。这适用于您的示例:

(swap! app-state assoc 
       :lastresults [] 
       :error false 
       :computing true)