我正在关注本教程:https ://crypt.codemancers.com/posts/2017-06-03-reactjs-server-side-rendering-with-router-v4-and-redux/我认为这是“标准”在反应(?)中进行服务器端渲染的方式。
基本上会发生什么是我使用反应路由器(v4)来制作所有即将渲染的组件的树:
const promises = branch.map(({ route }) => {
return route.component.fetchInitialData
? route.component.fetchInitialData(store.dispatch)
: Promise.resolve();
});
等待所有这些承诺解决,然后调用renderToString
.
在我的组件中,我有一个名为的静态函数fetchInitialData
,如下所示:
class Users extends React.Component {
static fetchInitialData(dispatch) {
return dispatch(getUsers());
}
componentDidMount() {
this.props.getUsers();
}
render() {
...
}
}
export default connect((state) => {
return { users: state.users };
}, (dispatch) => {
return bindActionCreators({ getUsers }, dispatch);
})(Users);
所有这一切都很好,除了getUsers
在服务器和客户端上都调用。
我当然可以检查是否有任何用户已加载并且没有调用getUsers
,componentDidMount
但必须有一种更好、更明确的方法来不进行两次异步调用。