这是来自试剂docs。
(defn mountit []
(r/render-component [childcaller]
(.-body js/document))) ; (.-body) what is this?
答案 0 :(得分:3)
这是JavaScript互操作并访问body
的{{1}}属性,与JavaScript中的document
相同。见:http://cljs.info/cheatsheet/。因此,试剂组件将安装在页面的document.body
元素上。