When would bindActionCreators be used in react/redux?
问题 Redux docs for bindActionCreators states that: The only use case for bindActionCreators is when you want to pass some action creators down to a component that isn't aware of Redux, and you don't want to pass dispatch or the Redux store to it. What would be an example where bindActionCreators would be used/needed? Which kind of component would not be aware of Redux ? What are the advantages/disadvantages of both options? //actionCreator import * as actionCreators from './actionCreators'