React router + redux navigating back doesn't call componentWillMount
Currently I pre-load data from api in container component's lifecycle method componentWillMount: componentWillMount() { const { dept, course } = this.props.routeParams; this.props.fetchTimetable(dept, course); } It is called when user navigates to route /:dept/:course , and it works fine, until you navigate from let's say: /mif/31 to /mif/33 and then press back button. The component is not actually reinitialized, so the lifecycle method is not called, and the data isn't reloaded. Is there some sort of way to reload data in this case? Should I maybe use another method of preloading data? I see