如何使用AngularJS重新加载或重新呈现整个页面

前端之家收集整理的这篇文章主要介绍了如何使用AngularJS重新加载或重新呈现整个页面前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。
在渲染整个页面基于几个用户上下文并且做了几个$ 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())也不工作(没有任何反应)。

有没有其他方法重新呈现页面,而不再手动发出所有请求?

对于记录,要强制角度重新渲染当前页面,可以使用:
$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.

原文链接:https://www.f2er.com/angularjs/147826.html

猜你在找的Angularjs相关文章