如果我尝试将数组放入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))
干杯
答案 0 :(得分:0)
如果你把'@ rpc / test-vector'与最后一个例子一起使用。
干杯