What is the relationship and function of reducer and action in react.js? What is their life cycle?

What is the relationship and function of reducer and action in

react.js? What is their life cycle?

reducer
action
Apr.11,2021

teacher Ruan Yifeng's
Link description


when action is executed, reducer is automatically triggered. Reducer is just a pure function, and there is no life cycle


if you understand vue, you can understand reducer as a state manager for vuex, and action is the key to this state manager.

Menu