在Rails中使用React - react_rails
欢迎转载,请支持原创,保留原文链接:blog.ilibrary.me
react_rails是facebook推荐的一个react gem, 安装使用都非常方便。
步骤比较简单:
- 在Gemfile中加入下面的语句
gem 'react-rails'
- bundle install
bundle install
- 运行react_rails安装脚本
rails g react:install
- 配置react
# config/environments/development.rb
MyApp::Application.configure do
config.react.variant = :development
end
# config/environments/production.rb
MyApp::Application.configure do
config.react.variant = :production
end
- 在app/assets/javascripts/components/下面创建自己的components
class MyComponent extends React.Component {
render(){
return (<div>Hello React</div>);
}
}
- 在Rails view中添加下面的代码,渲染组件
<%= react_component 'MyComponent', { data: @records } %>