我连接了一个简单的 React 组件(映射一个简单的数组/状态)。为了避免引用商店的上下文,我想要一种直接从道具获得“分派”的方法。我见过其他人使用这种方法,但由于某些原因无法使用它:)
下面是我目前使用的每个 npm 依赖项的版本
"react": "0.14.3",
"react-redux": "^4.0.0",
"react-router": "1.0.1",
"redux": "^3.0.4",
"redux-thunk": "^1.0.2"
下面是组件 w/connect 方法
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;
};
如果您需要查看我的路由器是如何配置的 w/reducx
const createStoreWithMiddleware = applyMiddleware(
thunk
)(createStore);
const store = createStoreWithMiddleware(reducers);
var Route = (
<Provider store={store}>
<Router history={createBrowserHistory()}>
{Routes}
</Router>
</Provider>
);
更新
看起来,如果在连接中省略自己的分派(目前在上面显示的是 fetchUsers) ,就会得到免费的分派(只是不确定这是否是通常设置 w/异步操作的工作方式)。人们是混合搭配,还是一切都是或者什么都不是?
[ mapDispatchToProps ]