如果我试图将数组放入 index.cljs.hl 页面,我该如何在 Clojurescript 中使用该数组。我发现我可以使用:
(loop-tpl :bindings [single-data rpc/test-vector]
(h2 single-data))
在 hLisp 部分,但如果我想使用上面的 html 标记所在的数组,我似乎遇到了问题。rpc.cljs页面中的数组如下
(defc= test-vector ["Good" "Man" "Shoe"])
我试过使用没有数据的地图,只有一个数组,它可以工作:
(defn build-list
[]
(map #(h2 %) ["one" "two" "three"]))
但是,如果我尝试使用该数组,它就不再起作用了,我也不知道为什么。
(defn build-list
[]
(map #(h2 %) rpc/test-vector))
干杯