API 参考
Redux 的 API 非常少。Redux 为你定义了一系列的约定(例如 reducers),同时提供了少量的辅助函数来把这些约定整合到一起。
这一章会介绍所有的 Redux API。记住,Redux 只关心如何管理 state。在实际的项目中,你还需要使用如 react-redux这样的 UI 绑定库。
顶级暴露的方法
- createStore(reducer, [preloadedState], [enhancer])
- combineReducers(reducers)
- applyMiddleware(...middlewares)
- bindActionCreators(actionCreators, dispatch)
- compose(...functions)
Store API
引入
上面介绍的所有函数都是顶级暴露的方法。都可以这样引入:
ES6
import { createStore } from 'redux'
ES5 (CommonJS)
var createStore = require('redux').createStore
ES5 (UMD build)
var createStore = Redux.createStore