实战react技术栈+express前后端博客项目(四)——博客首页代码编写与redux-saga组织写完了会连载一个系列博客。随着开发的进行,确实遇到了很多坑,也请教了很多人。然后我想,为什么不在记录陷阱的同时分享收获。分享固然好,但如果能集思广益岂不更美。我们的口号是:坚决不做不完。本博客将为连载代码博客同步更新博客。以后随着项目的发展,可能会遇到之前写的不合适的地方,回去修改。如有不妥之处~欢迎兄弟们指教。谢谢!首页效果图(目前为假数据)未登录登录首页部分代码编写classHomeextendsComponent{constructor(props){super(props);this.shouldComponentUpdate=PureRenderMixin.shouldComponentUpdate.bind(this)}render(){const{login,register}=this.props;localStorage.setItem('userInfo',JSON.stringify(this.props.userInfo));返回(this.props.match.params.tag&&(tags.indexOf(this.props.match.params.tag)===-1||this.props.location.pathname.lastIndexOf('\/')>0)?
