No need for state in React components if using Redux and React-Redux?

夙愿已清 提交于 2019-12-30 08:03:35

问题


Managing state with React only

I understand that if you're creating an application using React only, you will end up managing all of your state within different React components you create.

Managing state with React and Redux

If you decide to use Redux in combination with React, you can then move all of the state from each of your React components into the overall Redux application state. Each component that requires a slice of the Redux application state can then hook into the state via React-Redux's connect function.

Question

Does this mean that you no longer need to write any React components that deal with React's state (i.e. this.setState) since React-Redux is connecting the React components with Redux state by passing data into the container component as props?


回答1:


There are different opinions on this, but the general view seems to be that redux should only contain "application state". Individual react components like dropdowns or modals will still have their own state.

There is still a lot of debate on this though, check out this issue for example about how to manage local component state: https://github.com/reactjs/redux/issues/159

Some projects have been popping up that are trying to solve this "problem":

  • redux-react-local
  • recompose withReducer (more for reducer semantics for local, not global state)


来源:https://stackoverflow.com/questions/36209022/no-need-for-state-in-react-components-if-using-redux-and-react-redux

易学教程内所有资源均来自网络或用户发布的内容,如有违反法律规定的内容欢迎反馈
该文章没有解决你所遇到的问题?点击提问,说说你的问题,让更多的人一起探讨吧!