6

我在文件 client.cljs 中有以下代码:

(ns onn.client
    (:require [enfocus.core :as ef]
          [enfocus.effects :as effects]
          [enfocus.events :as events]
          [clojure.browser.repl :as repl]
          [goog.net.XhrIo :as xhr]
          [cljs.core.async :as async :refer [chan close!]])
    (:use-macros [enfocus.macros :only [deftemplate defsnippet defaction]])
    (:require-macros [cljs.core.async.macros :refer [go alt!]]
))
;....the actual code follows

项目文件如下所示:

(defproject onn "DEV-SNAPSHOT"
  :description "FIXME: write this!"
  :url "http://exampl.com/FIXME"
  :dependencies [[org.clojure/clojure "1.5.1"]
             [ring/ring-core "1.1.8"]
             [ring/ring-jetty-adapter "1.1.8"]
             [org.clojure/clojurescript "0.0-1820"]
             [org.clojure/core.async "0.1.0-SNAPSHOT"]
             [enfocus "2.0.0-SNAPSHOT"]]
  :plugins [[lein-cljsbuild "0.3.2"]
            [lein-ring "0.8.3"]]
  :cljsbuild {:builds [{:source-paths ["src"],
                    :compiler {:pretty-print true,
                               :output-to "resources/public/js/main.js",
                               :warnings true,
                               :optimizations :whitespace}}]}
  :ring {:handler onn.server/app :port 3000})

...编译时给我这个错误:

Caused by: clojure.lang.ExceptionInfo: 
Could not locate cljs/core/async/macros__init.class or cljs/core/async/macros.clj 
on classpath:  at line 1 src/onn/client.cljs

请注意,我的代码是从这里复制的:https ://github.com/Dimagog/AsyncGET/blob/master/cljs/app.cljs这个人的项目具有相同的依赖项并且可以正常工作。

知道为什么吗?谢谢!

更新:我的 cljsbuild 是自动的。重新启动 cljsbuild 后,它编译得很好。谢谢!

4

5 回答 5

6

当我(错误地):include-macros true在我的 require 中使用时出现此错误cljs.core.async

;; THROWS ERROR
(ns my-ns
  (:require [cljs.core.async :refer [<!] :include-macros true])
  (:require-macros [cljs.core.async.macros :refer [go]]))

删除它有效:

;; DOES NOT THROW ERROR
(ns my-ns
  (:require [cljs.core.async :refer [<!]])
  (:require-macros [cljs.core.async.macros :refer [go]]))
于 2014-12-03T20:31:14.983 回答
3

您的project.clj文件似乎缺少AsyncGET项目使用的存储库。

:repositories { "sonatype-oss-public" "https://oss.sonatype.org/content/groups/public/" }
于 2013-11-04T15:15:49.303 回答
1

我也遇到过这个。运行lein cljsbuild clean启用 cljsbuild 以拉入库并成功构建。

于 2014-08-11T03:48:17.413 回答
0

仅当您的错误与 brepl ...

如果您尝试将此代码用于“标准”clojurescript brepl,首先您需要将 clojure 宏代码评估为 repl,然后可以从 brepl 获得异步宏。此外,您可以尝试在 brepl 上进行交互式编码 @cemerick/austin 工具https://github.com/cemerick/austin

于 2013-11-04T23:04:45.867 回答
0

cljsbuild 是自动的。重新启动 cljsbuild 后编译就好了

于 2017-10-11T11:38:33.003 回答