How to reload or re-render the entire page using AngularJS

After rendering the entire page based on several user contexts and having made several $http requests, I want the user to be able to switch contexts and re-render everything again (resending all $http requests, etc). If I just redirect the user somewhere else, things work properly: $scope.on_impersonate_success = function(response) { //$window.location.reload(); // This cancels any … Read more