我想在我的应用中使用react-with-addons
(根据https://facebook.github.io/react/docs/animation.html允许css过渡)和bootstrap-cljs
(所以我可以使用bootstrap组件)。
问题是,当我在我的代码中调用引导函数时,我在浏览器中出现错误:ReactBootstrap is not defined
。
在我看来,问题在于,为了使用react-with-addons
,我在project.clj
[org.omcljs/om "0.9.0" :exclusions [cljsjs/react]]
中排除了常规反应包。
我说错了吗?有办法吗?
答案 0 :(得分:0)
事实证明我有版本冲突。我使用react-with-addons
v0.12,而bootstrap-cljs
需要React版本> 0.14。升级我的react-with-addons
解决了这个问题。