cljs Om 与 React 组件互操作?
cljs Om interop with React components?
是否可以在 Om 应用程序中使用第三方 React 组件?
我有一个用 ClojureScript 和 Om 编写的项目,我想使用 JedWatson/react-select,我应该如何解决这个问题?
这有几个步骤:
- 打包 JS 库以在 Clojurescript 中使用
JS 库是包
foreign-libraries
你可以阅读更多关于这个 in the ClojureScript wiki.
- 在您需要外部库后,您可以通过全局命名空间 (
js/
) 访问它并调用您的库定义的函数。
这是一个example of using fixed-data-table
with Om。
它的打包国外库可以在CLJSJS packages repository. (More information about CLJSJS can be found on the website: http://cljsjs.github.io/)
中找到
是否可以在 Om 应用程序中使用第三方 React 组件?
我有一个用 ClojureScript 和 Om 编写的项目,我想使用 JedWatson/react-select,我应该如何解决这个问题?
这有几个步骤:
- 打包 JS 库以在 Clojurescript 中使用
JS 库是包
foreign-libraries
你可以阅读更多关于这个 in the ClojureScript wiki. - 在您需要外部库后,您可以通过全局命名空间 (
js/
) 访问它并调用您的库定义的函数。
这是一个example of using fixed-data-table
with Om。
它的打包国外库可以在CLJSJS packages repository. (More information about CLJSJS can be found on the website: http://cljsjs.github.io/)
中找到