I am developing a Reactjs web application from scratch and encountered a tricky situation which i need help with. Whenever i navigate away from a particular url and navigate bac
@AKJ - @Andy Ray said it correctly, but I'll like to add that componentDidMount
is the best place to load async
calls, as it is called after render and about Store
redux store keeps data until you refresh the page after refresh redux store is reinitialized, if you need store the data after refresh try redux-persist
You only call loadAAA
at the top level of index.js
, which only executes once when your page loads. If you want to dispatch it every time your XYZPage
page renders, put in XYZ's componentDidMount