最新消息:雨落星辰是一个专注网站SEO优化、网站SEO诊断、搜索引擎研究、网络营销推广、网站策划运营及站长类的自媒体原创博客

javascript - React Redux connect() with Redux thunk - Stack Overflow

programmeradmin1浏览0评论

I have a problem when using Redux thunk with the connect() method from react-redux. I have the following code:

function Component(props) {
    return (
        <button onClick={props.callback}>Click here</button>
    );
}

function actionCreator() {
    console.log('#1');
    return dispatch => console.log('#2'); // = thunk
}

const mapDispatchToProps = dispatch => ({
    callback: actionCreator
});
export const Container = connect(null, mapDispatchToProps)(Component);

When I render the Container ponent and click the button, only '#1' is being displayed in the console. So the 'thunk' doesn't get executed.

When I explicitly dispatch actionCreator(), it does work:

const mapDispatchToProps = dispatch => ({
    callback: dispatch => dispatch(actionCreator())
});

The Redux docs says this about mapDispatchToProps:

If an object is passed, each function inside it will be assumed to be a Redux action creator

So why does mapDispatchToProps not dispatch() my actionCreator()? I'm new to React, so maybe I don't understand it right?

Update

When using bindActionCreators() from redux it does work:

const mapDispatchToProps = dispatch => {
    return bindActionCreators({
        callback: actionCreator
    }, dispatch);
};

Is this the correct way to bind actioncreators with connect()?

I have a problem when using Redux thunk with the connect() method from react-redux. I have the following code:

function Component(props) {
    return (
        <button onClick={props.callback}>Click here</button>
    );
}

function actionCreator() {
    console.log('#1');
    return dispatch => console.log('#2'); // = thunk
}

const mapDispatchToProps = dispatch => ({
    callback: actionCreator
});
export const Container = connect(null, mapDispatchToProps)(Component);

When I render the Container ponent and click the button, only '#1' is being displayed in the console. So the 'thunk' doesn't get executed.

When I explicitly dispatch actionCreator(), it does work:

const mapDispatchToProps = dispatch => ({
    callback: dispatch => dispatch(actionCreator())
});

The Redux docs says this about mapDispatchToProps:

If an object is passed, each function inside it will be assumed to be a Redux action creator

So why does mapDispatchToProps not dispatch() my actionCreator()? I'm new to React, so maybe I don't understand it right?

Update

When using bindActionCreators() from redux it does work:

const mapDispatchToProps = dispatch => {
    return bindActionCreators({
        callback: actionCreator
    }, dispatch);
};

Is this the correct way to bind actioncreators with connect()?

Share Improve this question edited Mar 1, 2016 at 8:44 Jan-Paul Kleemans asked Feb 29, 2016 at 13:38 Jan-Paul KleemansJan-Paul Kleemans 8281 gold badge12 silver badges23 bronze badges
Add a ment  | 

2 Answers 2

Reset to default 7

In your mapDispatchToProps, you are overriding the dispatch function by making it an argument of the function. Because you are doing the dispatch => {function}, the dispatch inside the function now refers to the argument you pass to the function – but you don't pass any argument to it.

callback: dispatch => dispatch(actionCreator())
           // ^ overrides ^

Change it to this, and it should work:

const mapDispatchToProps = dispatch => ({
    callback: () => dispatch(actionCreator())
});

That way, when you call callback(), the dispatch refers to the passed dispatch function by mapDispatchToProps, and the action gets dispatched.

It's because your actionCreator function returns a new function when it gets called. Remove the return in actionCreator will make it work.

发布评论

评论列表(0)

  1. 暂无评论