In the book “ng-book”, p183, they say that using history.pushState() in HTML5, the router of Angular 5 will change the URL without sending an HTTP request.
question:
Is there a way so that moving to a new route does not reconstruct the Angular components. To re-render, it is fine. I mean to run again the constructor.
I am mainly experienced with React, and I don’t use react-router because it resets and reconstructs the components.