如何在clojurescript中使用clojure.string / join

时间:2014-05-19 21:11:20

标签: clojure clojurescript

我有以下功能:

(defn join [a] (clojure.string/join  " " a))

但我总是遇到错误:

Uncaught ReferenceError: clojure is not defined 

1 个答案:

答案 0 :(得分:15)

您需要在命名空间格式中包含该模块:

(ns my-app.core
  (:require [clojure.string :as string]))

(clojure.string/blank? "")

(string/blank? "")

https://github.com/swannodette/lt-cljs-tutorial/blob/master/lt-cljs-tutorial.cljs#L22-L33

如果遇到问题,请尝试清理并重新启动编译器(lein do cljsbuild clean, cljsbuild auto