2

我在我的项目中使用 react.rb,我也想使用 bootstrap。我找到了 React-Bootstrap,但不知道如何在 react.rb 中使用它。

4

2 回答 2

2

感谢@catmando 分享答案。

首先,定义一个包装器:

class RB < React::NativeLibrary
  imports ReactBootstrap
end 

然后,像这样使用它

RB.Button(bs_style: :default){"My Button"}
于 2016-01-20T01:42:03.197 回答
0

有一种新的方法可以做到这一点,只需添加 require 'reactrb/auto-import'到 components.rb 中,所有需要的 JS 库都会自动导入到 Ruby 命名空间中,这样你就可以直接访问 JS 组件。在此处查看示例:https ://github.com/barriehadfield/reactrb-showcase#working-with-react-bootstrap

于 2016-07-22T05:50:35.950 回答