Calling Dispatch function from a blank javascript file

后端 未结 2 1900
借酒劲吻你
借酒劲吻你 2020-12-15 20:02

So i\'m writing a React-Redux web app, and i call dispatch from my react components like this :

this.props.dispatch(someAction());

Now i ne

2条回答
  •  北海茫月
    2020-12-15 21:02

    The dispatch method is one of the store's methods. react-redux makes dispatch available to components as props via the provider, and mapDispatchToProps.

    You can dispatch directly from the store:

    store.dispatch(action)
    

提交回复
热议问题