我有一个简单的 React 组件可以连接(映射一个简单的数组/状态)。为了避免引用 store 的上下文,我想要一种直接从 props 获取“调度”的方法。我见过其他人使用这种方法,但由于某种原因无法访问它:)
这是我当前使用的每个 npm 依赖项的版本
"react": "0.14.3",
"react-redux": "^4.0.0",
"react-router": "1.0.1",
"redux": "^3.0.4",
"redux-thunk": "^1.0.2"
这是带有连接方法的组件
class Users extends React.Component {
render() {
const { people } = this.props;
return (
<div>
<div>{this.props.children}</div>
<button onClick={() => { this.props.dispatch({type: ActionTypes.ADD_USER, id: 4}); }}>Add User</button>
</div>
);
}
};
function mapStateToProps(state) {
return { people: state.people };
}
export default connect(mapStateToProps, {
fetchUsers
})(Users);
如果您需要查看减速器(没什么令人兴奋的,但在这里)
const initialState = {
people: []
};
export default function(state=initialState, action) {
if (action.type === ActionTypes.ADD_USER) {
let newPeople = state.people.concat([{id: action.id, name: 'wat'}]);
return {people: newPeople};
}
return state;
};
如果您需要查看我的路由器是如何使用 redux 配置的
const createStoreWithMiddleware = applyMiddleware(
thunk
)(createStore);
const store = createStoreWithMiddleware(reducers);
var Route = (
<Provider store={store}>
<Router history={createBrowserHistory()}>
{Routes}
</Router>
</Provider>
);
更新
看起来如果我在连接中省略我自己的调度(当前上面我正在显示 fetchUsers),我将获得免费调度(只是不确定这是否是带有异步操作的设置通常会如何工作)。人们是混搭还是全有或全无?
[mapDispatchToProps]