在渲染整个页面基于几个用户上下文并且做了几个$ http请求后,我想让用户能够切换上下文并重新再次渲染所有$ http请求等等。如果我只是将用户重定向到其他地方,事情工作正常:
$scope.on_impersonate_success = function(response) { //$window.location.reload(); // This cancels any current request $location.path('/'); // This works as expected,if path != current_path }; $scope.impersonate = function(username) { return auth.impersonate(username) .then($scope.on_impersonate_success,$scope.on_auth_Failed); };
如果我使用$ window.location.reload(),那么等待响应的auth.impersonate(username)上的一些$ http请求将被取消,因此我不能使用它。此外,hack $ location.path($ location.path())也不工作(没有任何反应)。
对于记录,要强制角度重新渲染当前页面,可以使用:
原文链接:https://www.f2er.com/angularjs/147826.html$route.reload();
根据AngularJS documentation:
Causes $route service to reload the current route even if $location hasn’t changed.
As a result of that,ngView creates new scope,reinstantiates the controller.