这个语法 (.-body ...) 在 clojurescript/reagent 中是什么意思?
What doe this syntax (.-body ...) mean in clojurescript/reagent?
这是来自试剂docs。
(defn mountit []
(r/render-component [childcaller]
(.-body js/document))) ; (.-body) what is this?
即JavaScript互操作并访问document
的body
属性,与JavaScript中的document.body
相同。参见:http://cljs.info/cheatsheet/。因此 Reagent 组件将安装在页面的 body
元素上。
这是来自试剂docs。
(defn mountit []
(r/render-component [childcaller]
(.-body js/document))) ; (.-body) what is this?
即JavaScript互操作并访问document
的body
属性,与JavaScript中的document.body
相同。参见:http://cljs.info/cheatsheet/。因此 Reagent 组件将安装在页面的 body
元素上。