首先是引入redux,我的redux是定义在自己创建的store文件夹中的index文件里:
import store from '../../store/index.js'
然后在挂载完成的生命周期里,加上:
store.subscribe(()=>{ //实现实时响应(被修改过的redux数据可以被实时渲染到页面上)
this.setState({})
完成.
componentDidMount(){
store.subscribe(()=>{ //实现实时响应
this.setState({})
})
}