0
是否可以綁定ClojureScript中的this
上下文?現在 ,我堅持傳遞this
的高階功能,如:綁定「this」上下文
(defn generateTransactFunction [this]
(fn [item] (do stuff with this and item)))
這並不覺得最佳!我只是在學習ClojureScript,所以我認爲我缺少一些東西。
編輯:
貌似partial
可以做的工作,如:
(defn abc [this arg1 arg2]())
並通過
(partial abc this)