我是React / React-Engine的新手。我在服务器端有一个配置,我需要将某些值传递给客户端但是我依赖NODE_ENV才能获得正确的配置。
var config = {
local: { ... }
production: { ...}
}
module.exports = config[process.env.NODE_ENV]
哪个在服务器端工作得很好,但是因为我需要在客户端引用这些对象中包含的一些值所以我不能要求(./ config);在我的React JSX中。
有没有简单的方法将这些内容传递给React?在一天结束的时候,如果我能以某种方式直接将'config'直接传递给React而不必担心客户端的NODE_ENV,我会很高兴。
由于
答案 0 :(得分:15)
在呈现之前将数据从服务器传递到客户端的最常见方法是将其嵌入到React呈现的页面上的全局JavaScript变量中。< / p>
因此,例如,在您实际使用React应用程序渲染包含<script>
标记的模板的中间件中,您可以添加信息并将其抓取在模板上:
var config = require('../config-from-somewhere');
app.get('/', function (req, res) {
res.render('index', {config: JSON.stringify(config)});
});
一个示例小胡子模板:
<html>
<body>
<script>
window.CONFIG = JSON.parse({{{config}}});
</script>
<script src="my-react-app.js"/>
</body>
</html>
HOWEVER 显然react-engine
已经提供了自己的方式来发送数据做客户端:
组件渲染数据
提供给组件进行渲染的实际数据是表示生成的renderOptions对象。
https://github.com/paypal/react-engine#data-for-component-rendering
正如您在this example中看到的那样,movies
json只是被传递到渲染中:
app.get('*', function(req, res) {
res.render(req.url, {
movies: require('./movies.json')
});
});
然后,通过框架魔法的优雅,可能在this line上,为您的组件提供信息,然后List从props.movies
使用它。
module.exports = React.createClass({
displayName: 'List',
render: function render() {
return (
<div id='list'>
<h1>Movies</h1>
<h6>Click on a movie to see the details</h6>
<ul>
{this.props.movies.map(function(movie) {
return (
<li key={movie.id}>
<Router.Link to={'/movie/' + movie.id}>
<img src={movie.image} alt={movie.title} />
</Router.Link>
</li>
);
})}
</ul>
</div>
);
}
});
因此,基本上将您的config
添加到您的渲染调用中,它应该在您的组件的props
中可用。
事实上,正如我们在this line onwards上看到的那样,引擎会合并renderOptions
和res.locals
,最后将其传递给React。
// create the data object that will be fed into the React render method.
// Data is a mash of the express' `render options` and `res.locals`
// and meta info about `react-engine`
var data = merge({
__meta: {
// get just the relative path for view file name
view: null,
markupId: Config.client.markupId
}
}, omit(options, createOptions.renderOptionsKeysToFilter));
和
return React.createElement(Component, merge({}, data, routerProps));
答案 1 :(得分:0)
与express(以及任何其他视图呈现节点框架)配合良好的react-engine的替代方法是react-helper(https://github.com/tswayne/react-helper)。它几乎可以处理在任何节点框架中为您呈现反应组件所需的一切。您只需为webpack创建一个入口点(js文件)(它可以为您生成webpack配置)并在控制器和视图中添加一行,您的组件将在该页面上呈现。您还可以从express传递数据到您的react组件,当组件在浏览器中绑定时,它将可以访问该服务器端数据。
const component = reactHelper.renderComponent('MyComponent', {prop: config.prop})
res.render('view-to-render', {component})
还有反应辅助工具(https://github.com/tswayne/express-react-helper)的快速中间件,允许您添加所有视图可用的上下文,这对于配置数据很方便。
app.use(expressReactHelper.addToReactContext({configProp: config.foo}))