所以我开始学习clojurescript,我正在查看不同的教程。我无法找到的一件事是在某个 html 文件上定位元素 id 来放置我的标记。
假设我有两个 html 文件,index.html 和 about.html。当 url 指向http://localhost:3449/about时,我想将下面的代码定位到 about.html 上的元素 ID“app”
代码 :
(om/root
(fn [data owner]
(reify
om/IRender
(render [_]
(dom/p nil (:text data)))))
app-state
{:target (. js/document (getElementById "app"))})
这样做的最佳方法是什么?或者也许是一个参考,所以我可以看看它。或者,也许我在这里遗漏了一些观点,也许有人可以启发我。
我也尝试过使用这个https://github.com/gf3/secretary但我不确定这是否是更好的方法,因为 url 必须有一个哈希键(http://localhost:3449/#/about)才能触发。
更新:
所以我使用了下面的答案,它确实有效,但在让它工作之前我遇到了一些问题。无论如何,有人遇到了这篇文章并使用了下面的答案,但遇到了一个未定义的问题,请检查我的最终代码。
:cljsbuild
你的部分project.clj
:cljsbuild {:builds [{ :id "dev"
:source-paths ["src/clj" "src/cljs"]
:compiler {:output-to "resources/public/js/main.js"
:output-dir "resources/public/js/out/"
:optimizations :none
:pretty-print true}}]}
包含 js 文件about.html
<script src="js/out/goog/base.js" type="text/javascript"></script>
<script src="js/main.js" type="text/javascript"></script>
<script type="text/javascript">goog.require("om_async.about");</script>
<script type="text/javascript">om_async.about.init();</script>