30. Redux中的核心API - yiqunkeke/react-jianshu-shangguigu-zty GitHub Wiki

1. createStore

可以帮助我们创建一个Store

2. store.dispatch()

可以帮助我们派发 action,这个action会传递给store

3. store.getState()

可以帮助我们获取到store中所有的数据内容

4.store.subscribe()

可以让我们订阅store的改变,只要store发生改变,store.subscribe中的回调函数就会被执行。