我正在使用react-rails
使用rails学习react.js。
应用程序基本上是体育赛事的列表。
使用数据初始化主要组件的更好方法是什么?
<%= react_component('EventsBox', {url: events_path(format: 'json')}, {prerender: true)} %>
然后发出ajax请求,以便从componentDidMount
中的此网址上传数据。
或
<%= react_component('EventsBox',{data: Event.all.as_json},{prerender: true)} %>
答案 0 :(得分:1)
如果您希望使用数据预呈现它,那么选项2就是您想要的。