我有一个非常简单的项目。我用boot和cljs创建了最简单的项目。它编译成功,我能够在html中看到正确的日志。当我为异步添加基本支持时,我收到了消息:
No such namespace: clojure.core.async, could not locate clojure/core/async.cljs, clojure/core/async.cljc, or Closure namespace "clojure.core.async"
该项目具有以下结构:
exemplo_cljs
html
index.html
src
exemplo_cljs
core.cljs
build.boot
index.html的内容:
<!doctype html>
<html lang="en">
<head>
<title>Hello</title>
</head>
<body>
<h2>Hello</h2>
<script src="main.js"></script>
</body>
</html>
core.cljs
(ns exemplo-cljs.core
(:require [clojure.core.async :as async]))
(def exercise (async/chan))
;; enable cljs to print to the JS console of the browser
(enable-console-print!)
;; print to the console
(println "Hello, World 4!")
和build.boot
(set-env!
:source-paths #{"src"}
:resource-paths #{"html"}
:dependencies '[[adzerk/boot-cljs "1.7.170-3"]
[org.clojure/core.async "0.2.371"]])
(require '[adzerk.boot-cljs :refer [cljs]])
原始工作项目具有相同的基本结构,除了core.cljs文件中的通道的require和def以及build.boot中添加的依赖项
答案 0 :(得分:2)
那是因为在ClojureScript中,core.async位于cljs.core.async
而不是clojure.core.async
下。
因此,您只需将ns表单更改为:
(ns exemplo-cljs.core
(:require [cljs.core.async :as async]))