我最近在同构react项目,我的客户端比较简单,并不需要redux的数据容器。现在同构使用服务端渲染,但是我的客户端中的setState方法似乎是不能在服务端使用,会报错。
Warning: setState(...): Can only update a mounting component. This usually means you called setState() outside componentWillMount() on theserver. This is a no-op.
于是我猜测是不是没有redux之类的存放数据容器,导致无法正常使用?
相关分类