react服务端渲染注意事项
1.react服务端渲染中,服务端只会执行到comnentWillMount,render,并不会执行componentDidMount.所以请求数据放在componentWillMount中执行。2.如果你使用了redux,并且使用了immutable.js来构建state,当客户端拿到服务端的state之后记得使用formJs转化一下。3.服务端渲染不会执行saga中间件,还是我的方式不对, ...
原创
2018-05-28 14:45:35 ·
647 阅读 ·
0 评论