How to listen to state changes: The following lifecycle methods will be called when state changes. You can compare provided state and props values with current state and props to determine if something meaningful changed.
1 2 | componentWillUpdate(object nextProps, object nextState) componentDidUpdate(object prevProps, object prevState) |
If you like this question & answer and want to contribute, then write your question & answer and email to freewebmentor[@]gmail.com. Your question and answer will appear on FreeWebMentor.com and help other developers.