在服务器上反应组件

时间:2015-03-28 23:14:50

标签: node.js express reactjs react-router

我一直在玩React一段时间,但仍然无法解决如何将其与现有节点/快递/车把应用程序集成的问题。

例如,如果我有一个需要从AWS获取json数据的feed组件 - 我该如何处理呢。

var VideoFeed = require('./component/VideoFeed');

app.use('/', function(res, req) { 
    DataService.getVideoFeed().then(function(data) {
        res.render('home', {videoComponent: React.renderToString(<VideoFeed feed={data} />);
    });
});

主页

<!DOCTYPE html>
<body>
    Some sample text.  Here's the Video Feed
    {{videoComponent}}
</body>
</html>

0 个答案:

没有答案