如何使用 Boot-clj 构建工具将 clojure.string 库添加到前端 Hoplon 项目

How to add the clojure.string library to a front-end Hoplon project using the Boot-clj build tool

我希望这些问题对某人有所帮助。我是 Hoplon 和 Boot 的新手。我正在尝试在 Hoplon 项目中使用 "clojure.string" 库,但我似乎无法获取它。我在 index.cljs.hl 文件中试过:

(:require [clojure.string :as str]))

然后它没有加载。接下来,我尝试将库包含在 build.boot 工具中,但似乎都不起作用:

 [org.clojure/clojure.string "1.8.0"]
 [org.clojure/clojure-string "1.8.0"]

这些似乎都不起作用,所以我正在研究如何使用字符串库。

干杯, 马特

经过多次搜索,我终于想出了如何去做。您需要做的就是在 "index.cljs.hl" 文件的顶部添加以下内容。

(page "index.html"
    (:require [clojure.string :as str]))

然后您可以访问字符串库作为(str/split等

干杯, 马特